ds1808lc: Initial Implementation Maxim DS1808 based LED lighting controller

DS1808 is a general purpose potentiometer but this implementation
is limited to controlling brightness of custom LED lighting hardware.
Ideally there should be a DS1808 module used by a seperate
lighting module.

Signed-off-by: Henry Bruce <henry.bruce@intel.com>
Signed-off-by: Abhishek Malik <abhishek.malik@intel.com>
This commit is contained in:
Henry Bruce
2016-01-06 15:23:50 -08:00
committed by Abhishek Malik
parent 63066bcc0b
commit d183c9574d
7 changed files with 352 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
include_directories(..)
set (libname "ds1808lc")
set (libdescription “DS1808 lighting controller”)
set (module_src ${libname}.cxx mraa-utils.cxx)
set (module_h ${libname}.h)
upm_module_init()