-
Notifications
You must be signed in to change notification settings - Fork 58
HamShield Quick Start Guide
Walter Dunckel edited this page Jun 19, 2017
·
4 revisions
The HamShield library has many powerful functions to get you started.
See the assembly instructions here: https://www.youtube.com/watch?v=93vexYQ2Ub0
HamShield09 used pins pinout:
To get started, you will need to include the libraries and create a radio. You can call it what you wish. In our examples, we call it just 'radio'.
/* My Awesome New HAM Radio Idea */
#include <HamShield.h>
HamShield radio;
In the above example, we include the HamShield library. These are critical libraries that are used to control the radio as well as communicate with the radio. The second function creates an object of the HamShield type. You do not need to know what this means - just make sure its always written in your sketch outside of the setup() and loop() functions.