Go to file
jakeg00dwin 6fecd7d413 removed other pre-built hex files and placed new 450ms delay one in direcotry 2024-01-03 17:28:48 -08:00
pre_built removed other pre-built hex files and placed new 450ms delay one in direcotry 2024-01-03 17:28:48 -08:00
README.md updated 2023-12-09 09:31:42 -08:00
avrdude.conf added the avrdude 7.0 program for windows 2023-12-09 09:14:05 -08:00
avrdude.exe added the avrdude 7.0 program for windows 2023-12-09 09:14:05 -08:00
avrdude.pdb added the avrdude 7.0 program for windows 2023-12-09 09:14:05 -08:00
flash_atiny13.ps1 updated the power shell script to be simpler 2023-12-09 09:18:39 -08:00
main.c updated to use 66 ticks or counter overflows at 4.8Mhz; at 6.8ms per overflow so aproximatly 450ms long press time. 2024-01-03 17:24:37 -08:00
makefile added a make target for 4.8Mhz without the CLKDIV8 bit flag on. 2024-01-03 17:23:47 -08:00
zadig-2.8.exe added the driver program for usbasp on windows 2023-12-09 09:14:18 -08:00

README.md

AVR ATiny13 Project 002

This is the firmware for a latching dual relay system. It allows the user to switch two DPDT relays by with two seperate switches.

Componets:

Micro: AVR ATiny13, ATiny25/45/85

Instructions:

  1. Power the system using a 1.8v~5.5v power supply
  2. Set/program the AVR to use a 1MHz clock rate.
  3. Connect the pins as described above.

ACTIVATING RELAYS:

  1. Activate the desired button with a quick press <= 350ms.
  2. Repeat to toggle the relay.

TEMPORARY TOGGLE:

  1. Press and hold the desired button >= 350ms.
  2. Let go to disable.

SAVING SETTINGS:

  1. Press and hold the target button.
  2. While holding the button power cycle the device.
  3. When the setting is sucessfully saved the relay/led will blink/toggle.
  4. repeat until desired preset is saved.

Technical Aspects:

The use of C style bitfields has been used inside a struct to maintain a global state. It minimizes the size of the binary once compiled.

The majority of the code is blocking/polling; overhead from introducing interrupts and ISR(interrupt service routines) wasn't as clean and made it more platform dependent.

The code right now can for the most part be ported to any AVR micro-controller with no changes.

BUILDING PROJECT:

On Unix

git clone <REPOURL>
cd <REPO>
make flash

Flashing the Project

On Windows

  1. Install the usbasp driver:
    1. plug in usbasp device.
    2. run the 'zadig-2.8.exe' program
    3. select the libusb 32 on the right by clicking the down arrow to select.
  2. open powershell
  3. navigate to the repo directory cd Downloads\gf_002
  4. enter the command below.
./avrdude.exe -p t13 -c usbasp -B 125kHz -U flash:w:.\pre_built\atiny13_4-8Mhz.hex
  • If you have the powershell execution policy set to allow scripts:
    • run flash_atiny13.ps1