User Portlet User Portlet

Discussions
Also here is the Python sketch uploaded to the Arduino:[code]int pin = 0; int val = 0; void setup(void) { Serial.begin(9600); } void loop(void) { val = analogRead(pin); Serial.write(val); Serial.println(val); delay (1000); ...
I am attempting to read the output of a photocell hooked up via pin 23 on the GPIO raspberry pi board. I was successful in following the python instructions available...