// https://forum.arduino.cc/t/make-a-chessboard-just-detect-the-position-of-pieces/1299427/27
// https://www.instructables.com/Automated-Chessboard/
/*
King 1 RED
Queen 2 GRN
Knight 3 BLU
Bishop 4 MAG
Rook 5 CYN
Pawn 6 YEL
*/
const byte latPin = 5;
const byte clkPin = 4;
const byte datPin = 3;
void setup() {
}
void loop() {
}