Skip to content

Instantly share code, notes, and snippets.

@nadavmatalon
Created October 6, 2016 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nadavmatalon/1d717c2d155bed51c6ab635c5ea794b8 to your computer and use it in GitHub Desktop.
Save nadavmatalon/1d717c2d155bed51c6ab635c5ea794b8 to your computer and use it in GitHub Desktop.
Arduino Uno WiFI
// Must be run on Arduino.org IDE (> V1.7.11)
#include <Wire.h>
#include <ArduinoWiFi.h>
void setup() {
Wifi.begin();
Serial.begin(9600);
}
void loop() {
Wifi.println("Hello World!");
delay(500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment