arduino connect to wifi code example
Example 1: arduino wifi client
//This is assuming that you are connected to a network - router or other access point
#include <WiFi.h>
// Initialize the client library
WiFiClient client;
void setup() {
WiFi.begin(ssid, pass); //Connect to access point
delay(4000); //Allow time for connection to become established
IPAddress server(192,168,2,1); //The IPAddress of the server you're trying to connect to
client.connect(server, 80) //Connect to the server through the servers IP and port number
}
Example 2: connect servo to arduino
// Include the Servo library #include <Servo.h>
// Declare the Servo pin
int servoPin = 3;
// Create a servo object
Servo Servo1;
void setup() {
// We need to attach the servo to the used pin number
Servo1.attach(servoPin);
}
void loop(){
// Make servo go to 0 degrees
Servo1.write(0);
delay(1000);
// Make servo go to 90 degrees
Servo1.write(90);
delay(1000);
// Make servo go to 180 degrees
Servo1.write(180);
delay(1000);
}