From d1df4ab337e236a8862f760dba326fda0bb3eb3a Mon Sep 17 00:00:00 2001 From: Morgan Redfield Date: Thu, 30 Jun 2016 19:00:23 -0700 Subject: [PATCH] remove Wire reference, we're not using it anymore --- HamShield-Quick-Start-Guide.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/HamShield-Quick-Start-Guide.md b/HamShield-Quick-Start-Guide.md index c5101ff..1c1e140 100644 --- a/HamShield-Quick-Start-Guide.md +++ b/HamShield-Quick-Start-Guide.md @@ -11,11 +11,10 @@ To get started, you will need to include the libraries and create a radio. You c /* My Awesome New HAM Radio Idea */ - #include - #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. +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.