mac-floppy-emu/source-1.0L-F11/AVR/SdFat/examples/HelloWorld/HelloWorld.pde
Sin Shimozono 73f05b45c8 My first
2014-07-10 10:52:36 +09:00

12 lines
181 B
Plaintext
Executable File

#include <SdFat.h>
// create a serial output stream
ArduinoOutStream cout(Serial);
void setup() {
Serial.begin(9600);
cout << "Hello, World!\n";
}
void loop() {}