Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
BinHong Lee 5ca48473eb Added documentations and instructions to set up pirms 7 gadiem
.gitignore Initial commit pirms 7 gadiem
Makefile Initial commit pirms 7 gadiem
Project.elf Initial commit pirms 7 gadiem
Project.hex Initial commit pirms 7 gadiem
Project.map Initial commit pirms 7 gadiem
README.md Added documentations and instructions to set up pirms 7 gadiem
USART.c Initial commit pirms 7 gadiem
USART.h Initial commit pirms 7 gadiem
diagram.png Added documentations and instructions to set up pirms 7 gadiem
index.md Added documentations and instructions to set up pirms 7 gadiem
pinDefines.h Initial commit pirms 7 gadiem
sunlightAlarmClock.c Initial commit pirms 7 gadiem

README.md

AVR - Sunrise Alarm Clock

The program is written for an ATMEGA168 programmed through an AVR.

For a comprehensive guide (or hardware side tutorial), please go to https://binhonglee.github.io/AVR---Sunrise-Alarm-Clock

Requirements

This program requires the following stuffs to work on your computer:

  • avrdude
  • make
  • cmake
  • UART terminal

Installation

  1. Clone this repository
$ git clone https://github.com/binhonglee/AVR---Sunrise-Alarm-Clock/
  1. (Optional) Check the Makefile to see if it fits your microcontroller and controller.

  2. Open your UART terminal.

  3. Make sure your UART terminal is connected to your USART component.

  4. Flash the microcontroller

$ make flash

Removal

To remove this program from your computer, do the following:

  1. Uninstall every other thing you installed from the requirements that you no longer need.

  2. Delete this folder

$ cd ../
$ rm -rf AVR---Sunrise-Alarm-Clock
Author’s note :

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.