4 HamShield Quick Start Guide
Walter Dunckel edited this page 2017-06-19 12:13:57 -07:00

The HamShield library has many powerful functions to get you started.

Assembling a new HamShield

See the assembly instructions here: https://www.youtube.com/watch?v=93vexYQ2Ub0

HamShield09 used pins pinout: HamShield09 Pinout

Getting Started

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.