···11+# tsched
1233+This project is the second assignment for CCOM4017.
2455+I am using a sockets library I developed myself on:
66+- https://git.gay/sona/enchufe
77+88+# Running
99+1010+You can simply execute:
1111+1212+```sh
1313+make run
1414+```
1515+1616+This will run the cluster on address `127.0.0.1` on port `42069` and connect the
1717+embedded device to it.
1818+1919+If you prefer to run each separately then you can run the program like in the
2020+following two sections.
2121+2222+## Cluster
2323+2424+```sh
2525+make cluster.py ADDRESS=<server address> PORT=<server port>
2626+```
2727+2828+where `<server address>` is the IP address of the cluster, and `<server port>`
2929+is the port number of the cluster.
3030+3131+## Embedded device
332433Example of how to run the embedded device:
534···736make edevice.py ADDRESS=<server address> PORT=<server port>
837```
9381010-1139where `<server address>` is the IP address of the cluster, and `<server port>`
1240is the port number of the cluster.
4141+4242+Example of how to run the cluster:
4343+