int value; void setup() { Serial.begin(9600); } void loop() { value = analogRead(A0); Serial.write(value); }