1
0
Fork 0

Add language to code snippets in readme

This commit is contained in:
Arti Zirk 2016-10-02 21:27:32 +03:00
parent 275cf9fa28
commit aa4e954f76
1 changed files with 15 additions and 7 deletions

View File

@ -11,23 +11,31 @@ by Silver Kits.
Currently to test this code you have to clone the repository Currently to test this code you have to clone the repository
git clone https://git.wut.ee/arti/i237.git hardware ```bash
cd hardware git clone https://git.wut.ee/arti/i237.git hardware
cd hardware
```
And export a enviroment variable that points to a Arduino Mega board. The And export a enviroment variable that points to a Arduino Mega board. The
real path will depend on the OS and Computer that you are using. For me it is real path will depend on the OS and Computer that you are using. For me it is
usualy `/dev/ttyACM0`. usualy `/dev/ttyACM0`.
export ARDUINO=/dev/ttyACM0 ```bash
export ARDUINO=/dev/ttyACM0
```
After that you can `make` the project. After that you can `make` the project.
make clean ```bash
make make clean
make install make
make install
```bash
You can also chekcout previous labs using `git checkout <lab name>`. For example You can also chekcout previous labs using `git checkout <lab name>`. For example
git checkout lab02 ```bash
git checkout lab02
```
Don't forget to `make clean` after each checkout! Don't forget to `make clean` after each checkout!