alguien me podria ayudar con el siguiente conmando? necesito agregar mas canales y un canal que trabaje como boton de reset..
desde ya agradesco sus comentarios...
#include <SPI.h>
#include <Ethernet.h>
#include <Servo.h>
Servo myservo;
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; // mac address
byte ip[] = { 10, 0, 1, 17 }; // direccion IP fija en LAN
byte gateway[] = { 192, 168, 1, 1 }; // internet access via router
byte subnet[] = { 255, 255, 255, 0 }; //subnet mask
EthernetServer server(80); //server port
String readString;
//////////////////////
void setup(){
pinMode(6, OUTPUT);
Ethernet.begin(mac, ip, gateway, subnet);
server.begin();
Serial.begin(9600);
Serial.println("server LED test 1.0 ---- FILENAME = LED2.ino "); // so I can keep track
}
void loop(){
// Create a client connection
EthernetClient client = server.available();
if (client) {
while (client.connected()) {
if (client.available()) {
char c = client.read();
//read char by char HTTP request
if (readString.length() < 100) {
//store characters to string
readString += c;
//Serial.print(c);
}
//if HTTP request has ended
if (c == '\n') {
///////////////
Serial.println(readString); //print to serial monitor for debuging
client.println("HTTP/1.1 200 OK"); //send new page
client.println("Content-Type: text/html");
client.println();
client.println("");
client.println("");
client.println("Sistema de Control");
client.println("");
client.println("");
client.println("
Sistema de Control
");client.println("
");
client.println("
");
client.println("<a href="/?lighton"">Prender");
client.println("<a href="/?lightoff"">Apagar
");
client.println("");
client.println("");
delay(1);
//stopping client
client.stop();
///////////////////// control arduino pin
if(readString.indexOf("?lighton") >0)//checks for on
{
digitalWrite(6, HIGH); // set pin 6 high
Serial.println("LED On");
}
else{
if(readString.indexOf("?lightoff") >0)//checks for off
{
digitalWrite(6, LOW); // set pin 6 low
Serial.println("LED Off");
}
}
readString=""; //clearing string for next read
}
}
}
}
}