https://github.com/mesemus/leddriver
https://github.com/mesemus/leddriver
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mesemus/leddriver
- Owner: mesemus
- License: apache-2.0
- Created: 2015-07-13T19:56:29.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-13T20:15:49.000Z (almost 10 years ago)
- Last Synced: 2025-03-08T03:46:18.758Z (2 months ago)
- Language: C++
- Size: 184 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LEDDriver
A small project for driving 10 different leds using atmel atmega 328p (DIL) microprocessor dedicated as a PWM driver.
The driver communicates via serial interface, commands:```
F....\n
- fade on selected pin from current value to the new one
S....\n
- set the value of the pins (without fading)
val is (pseudo)hexadecimal number:
00 .. completely off
01 - ff .. pwm on channel
g0 .. completely on
```This driver uses the SoftTablePWM library and is built in Eclipse,
converting it to .ino should pose no problem.