#define level_stick A2 #define vertical_stick A3 //create global parameters to store readings void setup () { Serial.begin (9600); //declare pins as input or output } void loop () { //read in all input and assign to int values //remap analog values that fits range of a single byte //send data via serial connection byte by byte //by doing two subsequent serial writes. //required delay to adequately send data without //without losing data on recievers side; experiment //with what works best. Again you don't want a giant delay. delay(__); }