remove Wire reference, we're not using it anymore
parent
d6b957857f
commit
d1df4ab337
|
@ -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 <HAMShield.h>
|
||||
#include <Wire.h>
|
||||
#include <HamShield.h>
|
||||
|
||||
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.
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue