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 276B

12345678910111213141516171819
  1. #include <SPI.h>
  2. #include "SdFat.h"
  3. // create a serial output stream
  4. ArduinoOutStream cout(Serial);
  5. void setup() {
  6. Serial.begin(9600);
  7. // Wait for USB Serial
  8. while (!Serial) {
  9. SysCall::yield();
  10. }
  11. delay(2000);
  12. cout << "Hello, World!\n";
  13. }
  14. void loop() {}