ArduChess/Arduchess.ino

19 lines
313 B
C++

#include "Board.h"
#include "Move.h"
#include "Types.h"
Board b = Board();
void setup() {
// put your setup code here, to run once:
Serial.begin(19200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println(F("hello"));
delay(1000);
Serial.println(b.get_zobrist());
b.print();
}