You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HelloWorld.ino 232B

123456789101112131415
  1. #include <SdFat.h>
  2. // create a serial output stream
  3. ArduinoOutStream cout(Serial);
  4. void setup() {
  5. Serial.begin(9600);
  6. while (!Serial) {} // wait for Leonardo
  7. delay(2000);
  8. cout << "Hello, World!\n";
  9. }
  10. void loop() {}