Modified: 2021-06
Transmission Control Software (TCS) is responsible for hosting the LEAP public facing API and facilitate TCP and light communications with a receiving device.
Start the server by specifying a serial port for light-medium communication stream and a public address for accessing the API for registration.
python3 -m tcs -s /dev/ttyUSB0 -a localhost:5000
# help screen
python3 -m tcs
Test a client connection requesting the tcs to echo the $ECHO_MESSAGE
:
# cli args
./scripts/client.py $ECHO_MESSAGE $APR_KEY
# sample
./scripts/client.py Hello 06eca1b437c7904cc3ce6546c8110110
View the docs here