Auto stash before merge of "python" and "origin/python"
This commit is contained in:
parent
bbd54aefef
commit
0f064e3338
|
@ -4,6 +4,7 @@ from pygame import mixer
|
||||||
import random
|
import random
|
||||||
from stockfish import Stockfish
|
from stockfish import Stockfish
|
||||||
import time
|
import time
|
||||||
|
import movegenerator
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
"Debug Log File": "",
|
"Debug Log File": "",
|
||||||
|
@ -31,20 +32,6 @@ settings = {
|
||||||
sound_path = Path("sounds")
|
sound_path = Path("sounds")
|
||||||
|
|
||||||
|
|
||||||
class BoardReader:
|
|
||||||
"""
|
|
||||||
A class containing methods to read the board state through the GPIO matrix.
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __init__(self):
|
|
||||||
pass
|
|
||||||
|
|
||||||
# TODO WIP
|
|
||||||
|
|
||||||
def get_latest_move(self):
|
|
||||||
return ""
|
|
||||||
|
|
||||||
|
|
||||||
def play_sound() -> None:
|
def play_sound() -> None:
|
||||||
"""
|
"""
|
||||||
Plays a random sound from the sound path
|
Plays a random sound from the sound path
|
||||||
|
|
Loading…
Reference in a new issue