Sending Sensor Data to Internet via Wifi Shield
so have tomato plant measure moisture level of , send values internet. want simple webpage or local ip address that can type browser , view.
here code sensor:
i use code instead of viewing info on computer hooked to, set arduino on power source , wirelessly send info ip or website.
here code sensor:
code: [select]
int moisturesensor = 0;
int moisture_val;
void setup() {
serial.begin(9600); //open serial port
}
void loop() {
moisture_val = analogread(moisturesensor); // read value moisture-sensing probes
serial.print("moisture sensor reads ");
serial.println( moisture_val );
delay(500);
}
i use code instead of viewing info on computer hooked to, set arduino on power source , wirelessly send info ip or website.
i have future plans add light sensor display amount of sunlight , add support second tomato plant.
Arduino Forum > Using Arduino > Project Guidance > Sending Sensor Data to Internet via Wifi Shield
arduino
Comments
Post a Comment