update readme

This commit is contained in:
Arti Zirk 2016-10-14 22:02:38 +02:00
parent 3473e0c18a
commit d701b63914
1 changed files with 23 additions and 1 deletions

View File

@ -1,3 +1,25 @@
# Peltier Jacket arduino to web bridge
Just runit :)
It displays temperature of the jacket
# How to run
## Setup
Make sure that you have Python 3 and pyserial installed.
You can install pyserial by using this command
```bash
pip3 install pyserial
```
## Run
You have to give main.py one argument that points to the Arduino device.
On Linux is is usualy `/dev/ttyACM0` or `/dev/ttyUSB0`.
On Mac is usualy `/dev/tty.usbmodem.1412` or something similar.
```bash
python3 main.py /dev/ttyACM0
```