1
0
Fork 0
I237 Riistvaralähedane programmerimine 2016
Go to file
Arti Zirk 39720c676e Looks like working lab03.2 code 2016-10-10 22:24:33 +03:00
bin Init repository and add structure 2016-08-19 09:50:00 +03:00
doc Fix 1602 LCD wiring document 2016-10-10 16:28:38 +03:00
lib/hd44780_111 Remove executable bit from lcd library 2016-10-10 20:33:24 +03:00
src Looks like working lab03.2 code 2016-10-10 22:24:33 +03:00
tooling Revert "Merge branch 'master' into 'master'" 2016-10-10 09:05:23 +00:00
.gitignore Add astyle code formatter usage script and change .gitignore to exclude astyle preserved files 2016-09-06 22:15:30 +03:00
Makefile Add Arduino 1602LCD Shield settings and LCD lib usage to the project 2016-10-04 21:56:44 +03:00
README.md Fix 2016-10-02 21:28:15 +03:00

README.md

I237 Hardware Programming

This here is my repository for hardware programming course at Estonian IT College that is based around a Arduino Mega 2560.

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 <lab name>. For example

git checkout lab02

Don't forget to make clean after each checkout!