You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.1 KiB

7 years ago
7 years ago
7 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Sunrise Alarm Clock
  2. The program is written for an ATMEGA168 programmed through an AVR.
  3. **For a comprehensive guide (or hardware side tutorial), please go to [https://binhonglee.github.io/SunriseAlarmClock](https://binhonglee.github.io/SunriseAlarmClock)**
  4. ### Requirements
  5. This program requires the following stuffs to work on your computer:
  6. - avrdude
  7. - make
  8. - cmake
  9. - UART terminal
  10. ### Installation
  11. 1. Clone this repository
  12. ```sh
  13. $ git clone https://github.com/binhonglee/SunriseAlarmClock/
  14. ```
  15. 2. (Optional) Check the Makefile to see if it fits your microcontroller and controller.
  16. 3. Open your UART terminal.
  17. 4. Make sure your UART terminal is connected to your USART component.
  18. 5. Flash the microcontroller
  19. ```sh
  20. $ make flash
  21. ```
  22. ### Removal
  23. To remove this program from your computer, do the following:
  24. 1. Uninstall every other thing you installed from the requirements that you no longer need.
  25. 2. Delete this folder
  26. ```sh
  27. $ cd ../
  28. $ rm -rf SunriseAlarmClock
  29. ```
  30. ###### Author's note :
  31. Most of the program has line by line comments written so it shouldn't be too hard to understand and to tweak it for your use.