Advertisement
chillichump

Beginners Guide to Automation Episode 2

Feb 17th, 2020
1,062
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. // youtube.com/chillichump2
  2.  
  3. void setup() {
  4.   // put your setup code here, to run once:
  5.   Serial.begin(9600);
  6.  
  7. }
  8.  
  9. void loop() {
  10.   // put your main code here, to run repeatedly:
  11.   Serial.print(millis() / 1000);
  12.   Serial.println(" - Hello World!");
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement