/* 2 sw1 3 sw2 4 sw3 5 sw4 6 sw5 7 sw6 8 sw7 9 strum up 10 strum down 11 whammy */ void setup(){ Serial.begin(9600); for(int i=2; i<=13; i++){ pinMode(i, INPUT); } } void loop(){ while(!Serial.available()); for(int i=2; i<=13; i++){ Serial.print(digitalRead(i)); Serial.print(';'); } Serial.print('\n'); delay(1); }