Monthly Archives: February 2013
Arduino and infrared reflective sensor
Testing a infrared reflective sensor module. I set it up with an arduino board, running the following sketch: int sensorPin = 10; int value = 0; int prevval =0; int count=0; void setup() { pinMode(sensorPin,INPUT); Serial.begin(9600); } void loop() { … Continue reading
Posted in arduino
Comments Off on Arduino and infrared reflective sensor
Store data from temperature server in couchdb
Fetching json data from an arduino server, adding a time stamp and stashing it all into a couchdb. Continue reading
Arduino – temperature webserver
A simple Arduino based web-readable multi channel termometer. Continue reading
Posted in arduino, Diverse
2 Comments
You must be logged in to post a comment.