From 275cf9fa282cecb9d2841c1b8c55d6aea8e2425b Mon Sep 17 00:00:00 2001 From: Arti Zirk Date: Sun, 2 Oct 2016 21:23:35 +0300 Subject: [PATCH] Add readme --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..1802def --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# I237 Hardware Programming + +This here is my repository for hardware programming course at +Estonian IT College that is based around a +[Arduino Mega 2560](https://www.arduino.cc/en/Main/ArduinoBoardMega2560). + +This code us usualy updated once every two weeks when a new excersice is put up +by Silver Kits. + +# How to install + +Currently to test this code you have to clone the repository + + 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 +real path will depend on the OS and Computer that you are using. For me it is +usualy `/dev/ttyACM0`. + + export ARDUINO=/dev/ttyACM0 + +After that you can `make` the project. + + make clean + make + make install + +You can also chekcout previous labs using `git checkout `. For example + + git checkout lab02 + +Don't forget to `make clean` after each checkout!