diff options
Diffstat (limited to 'examples/CompileTest')
| -rw-r--r-- | examples/CompileTest/CompileTest.ino | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/CompileTest/CompileTest.ino b/examples/CompileTest/CompileTest.ino new file mode 100644 index 0000000..800ebba --- /dev/null +++ b/examples/CompileTest/CompileTest.ino @@ -0,0 +1,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() { + +} + + |
