Chess_Hardware.py
#Hardware Test Program
import McpBoard
from time import sleep
theBoard = McpBoard.McpChessBoard()
#print theBoard.scanMCPBoard()
theBoard.ledAllOff()
#theBoard.ledMCPBoard('c1',True)
while True:
theBoard.storeMCPBoard()
print "stored"
sleep(3)
currentList = theBoard.scanMCPBoard()
theBoard.compareMCPBoard(currentList)
print "wait"
sleep(3)