This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <SoftwareSerial.h> | |
| #include <avr/pgmspace.h> | |
| #define USBbaud 9600 | |
| #define GSMbaud 9600 | |
| #define pHbaud 38400 | |
| #define pHrxPin 11 | |
| #define pHtxPin 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Simple TCP server for playing Tic-Tac-Toe game. | |
| Use Player-to-Player game mode based on naming auth. | |
| No thoughts about distribution or pub/sub mode | |
| (for monitoring or something like this). Just | |
| basic functionality. | |
| """ | |
| import time | |
| import logging |