aboutsummaryrefslogtreecommitdiff
path: root/examples/CompileTest/CompileTest.ino
blob: 800ebba71ef5f243a4faa7c3154720940d95639f (plain)
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() {

}