From 01d6f25b9bdf6e65a6b9a6db457042e18fc7aeb7 Mon Sep 17 00:00:00 2001 From: spaceneedle Date: Mon, 6 Jul 2015 17:04:45 -0700 Subject: [PATCH] Created HamShieldQuickStartGuide (markdown) --- HamShieldQuickStartGuide.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 HamShieldQuickStartGuide.md diff --git a/HamShieldQuickStartGuide.md b/HamShieldQuickStartGuide.md new file mode 100644 index 0000000..3665fb8 --- /dev/null +++ b/HamShieldQuickStartGuide.md @@ -0,0 +1,16 @@ +The HamShield library has many powerful functions to get you started. + +#### 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 + #include + + HamShield radio; + +In the above example, we include the HamShield and Wire libraries. 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. + +