/**
Project template for TV Pong - The final project of the Raspberry Pi Pico (RP2040) Deep Dive Course.
https://hackaday.io/project/180374-pi-pico-pal-tv-pong
Good luck!
*/
const int player1Up = 4;
const int player1Down = 5;
const int player2Up = 6;
const int player2Down = 7;
void setup() {
Serial1.begin(115200);
Serial1.println("The game begins...");
pinMode(player1Up, INPUT_PULLUP);
pinMode(player1Down, INPUT_PULLUP);
pinMode(player2Up, INPUT_PULLUP);
pinMode(player2Down, INPUT_PULLUP);
}
void checkInput(int pin, String keyName) {
if (!digitalRead(pin)) {
Serial1.println(keyName);
delay(200); // poor man's debouncing
}
}
void loop() {
checkInput(player1Up, "Player1: Up");
checkInput(player1Down, "Player1: Down");
checkInput(player2Up, "Player2: Up");
checkInput(player2Down, "Player2: Down");
delay(1); // This really speeds up the simulation in accurate clock mode
}
pico:GP0
pico:GP1
pico:GND.1
pico:GP2
pico:GP3
pico:GP4
pico:GP5
pico:GND.2
pico:GP6
pico:GP7
pico:GP8
pico:GP9
pico:GND.3
pico:GP10
pico:GP11
pico:GP12
pico:GP13
pico:GND.4
pico:GP14
pico:GP15
pico:GP16
pico:GP17
pico:GND.5
pico:GP18
pico:GP19
pico:GP20
pico:GP21
pico:GND.6
pico:GP22
pico:RUN
pico:GP26
pico:GP27
pico:GND.7
pico:GP28
pico:ADC_VREF
pico:3V3
pico:3V3_EN
pico:GND.8
pico:VSYS
pico:VBUS
tv1:IN
tv1:SYNC
tv1:GND
tv1:VCC
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
btn2:1.l
btn2:2.l
btn2:1.r
btn2:2.r
btn3:1.l
btn3:2.l
btn3:1.r
btn3:2.r
btn4:1.l
btn4:2.l
btn4:1.r
btn4:2.r