1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#include <HardwareSerial.h> #include <SPI.h> // Not an actual example - we just want to test that this does compile. // This ensures the availability of the Serial interface. void setup() { Serial.begin(9600); } void loop() { }