aboutsummaryrefslogtreecommitdiff
path: root/samples/Arduino/hello.ino
blob: 469cecde19f2c2338812d79dc54bbb32608fa1b3 (plain)
1
2
3
4
5
6
7
void setup() {
  Serial.begin(9600);
}

void loop() {
  Serial.print("Hello");
}