Skip to content

Instantly share code, notes, and snippets.

@walidamriou
Created May 9, 2020 23:30
Show Gist options
  • Save walidamriou/c47eaa5a9704389a2db3e8fb3c70e6a7 to your computer and use it in GitHub Desktop.
Save walidamriou/c47eaa5a9704389a2db3e8fb3c70e6a7 to your computer and use it in GitHub Desktop.
test new boards that can work with Arduino lang
#include <Arduino.h>
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Hello");
delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment