├── .gitattributes ├── .gitignore ├── CShiftPWM.cpp ├── CShiftPWM.h ├── LICENSE.md ├── ShiftPWM.h ├── boards ├── High Power LEDs │ ├── Photos │ │ ├── leddriversmallv1.png │ │ ├── shiftpwm_high_power_led_circuit.png │ │ ├── shiftpwm_high_power_led_driver_with_headers.jpg │ │ └── shiftpwm_high_power_led_driver_without_headers.jpg │ ├── leddriversmall.brd │ └── leddriversmall.sch ├── LED Matrix │ ├── ShiftMatrix.jpg │ ├── ShiftMatrixPWM │ │ ├── CShiftMatrixPWM.cpp │ │ ├── CShiftMatrixPWM.h │ │ ├── ShiftMatrixPWM.h │ │ ├── examples │ │ │ └── ShiftMatrixPWM_Example1 │ │ │ │ ├── ShiftMatrixPWM_Example1.pde │ │ │ │ ├── hsv2rgb.cpp │ │ │ │ └── hsv2rgb.h │ │ ├── keywords.txt │ │ └── pins_arduino_compile_time.h │ ├── ledmatrixdriver.brd │ ├── ledmatrixdriver.sch │ ├── matrixdriver.png │ └── matrixdriver_schematic.png ├── LED Strips - NFET │ ├── Photos │ │ ├── push_pull_line_driver.jpg │ │ ├── shiftpwm_led_strip_driver.jpg │ │ └── shiftpwm_led_strip_driver_old.jpg │ ├── nfetdriver.brd │ └── nfetdriver.sch └── SMD strip │ ├── Photos │ ├── RGB Strip back.jpg │ └── RGB Strip front.jpg │ ├── shiftpwm_tlc5916_SMD_RGB.brd │ └── shiftpwm_tlc5916_SMD_RGB.sch ├── examples ├── ShiftPWM_Non_Blocking │ └── ShiftPWM_Non_Blocking.ino └── ShiftPWM_RGB_Example │ └── ShiftPWM_RGB_Example.ino ├── keywords.txt └── pins_arduino_compile_time.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/.gitignore -------------------------------------------------------------------------------- /CShiftPWM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/CShiftPWM.cpp -------------------------------------------------------------------------------- /CShiftPWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/CShiftPWM.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/LICENSE.md -------------------------------------------------------------------------------- /ShiftPWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/ShiftPWM.h -------------------------------------------------------------------------------- /boards/High Power LEDs/Photos/leddriversmallv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/High Power LEDs/Photos/leddriversmallv1.png -------------------------------------------------------------------------------- /boards/High Power LEDs/Photos/shiftpwm_high_power_led_circuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/High Power LEDs/Photos/shiftpwm_high_power_led_circuit.png -------------------------------------------------------------------------------- /boards/High Power LEDs/Photos/shiftpwm_high_power_led_driver_with_headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/High Power LEDs/Photos/shiftpwm_high_power_led_driver_with_headers.jpg -------------------------------------------------------------------------------- /boards/High Power LEDs/Photos/shiftpwm_high_power_led_driver_without_headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/High Power LEDs/Photos/shiftpwm_high_power_led_driver_without_headers.jpg -------------------------------------------------------------------------------- /boards/High Power LEDs/leddriversmall.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/High Power LEDs/leddriversmall.brd -------------------------------------------------------------------------------- /boards/High Power LEDs/leddriversmall.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/High Power LEDs/leddriversmall.sch -------------------------------------------------------------------------------- /boards/LED Matrix/ShiftMatrix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ShiftMatrix.jpg -------------------------------------------------------------------------------- /boards/LED Matrix/ShiftMatrixPWM/CShiftMatrixPWM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ShiftMatrixPWM/CShiftMatrixPWM.cpp -------------------------------------------------------------------------------- /boards/LED Matrix/ShiftMatrixPWM/CShiftMatrixPWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ShiftMatrixPWM/CShiftMatrixPWM.h -------------------------------------------------------------------------------- /boards/LED Matrix/ShiftMatrixPWM/ShiftMatrixPWM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ShiftMatrixPWM/ShiftMatrixPWM.h -------------------------------------------------------------------------------- /boards/LED Matrix/ShiftMatrixPWM/examples/ShiftMatrixPWM_Example1/ShiftMatrixPWM_Example1.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ShiftMatrixPWM/examples/ShiftMatrixPWM_Example1/ShiftMatrixPWM_Example1.pde -------------------------------------------------------------------------------- /boards/LED Matrix/ShiftMatrixPWM/examples/ShiftMatrixPWM_Example1/hsv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ShiftMatrixPWM/examples/ShiftMatrixPWM_Example1/hsv2rgb.cpp -------------------------------------------------------------------------------- /boards/LED Matrix/ShiftMatrixPWM/examples/ShiftMatrixPWM_Example1/hsv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ShiftMatrixPWM/examples/ShiftMatrixPWM_Example1/hsv2rgb.h -------------------------------------------------------------------------------- /boards/LED Matrix/ShiftMatrixPWM/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ShiftMatrixPWM/keywords.txt -------------------------------------------------------------------------------- /boards/LED Matrix/ShiftMatrixPWM/pins_arduino_compile_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ShiftMatrixPWM/pins_arduino_compile_time.h -------------------------------------------------------------------------------- /boards/LED Matrix/ledmatrixdriver.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ledmatrixdriver.brd -------------------------------------------------------------------------------- /boards/LED Matrix/ledmatrixdriver.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/ledmatrixdriver.sch -------------------------------------------------------------------------------- /boards/LED Matrix/matrixdriver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/matrixdriver.png -------------------------------------------------------------------------------- /boards/LED Matrix/matrixdriver_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Matrix/matrixdriver_schematic.png -------------------------------------------------------------------------------- /boards/LED Strips - NFET/Photos/push_pull_line_driver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Strips - NFET/Photos/push_pull_line_driver.jpg -------------------------------------------------------------------------------- /boards/LED Strips - NFET/Photos/shiftpwm_led_strip_driver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Strips - NFET/Photos/shiftpwm_led_strip_driver.jpg -------------------------------------------------------------------------------- /boards/LED Strips - NFET/Photos/shiftpwm_led_strip_driver_old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Strips - NFET/Photos/shiftpwm_led_strip_driver_old.jpg -------------------------------------------------------------------------------- /boards/LED Strips - NFET/nfetdriver.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Strips - NFET/nfetdriver.brd -------------------------------------------------------------------------------- /boards/LED Strips - NFET/nfetdriver.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/LED Strips - NFET/nfetdriver.sch -------------------------------------------------------------------------------- /boards/SMD strip/Photos/RGB Strip back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/SMD strip/Photos/RGB Strip back.jpg -------------------------------------------------------------------------------- /boards/SMD strip/Photos/RGB Strip front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/SMD strip/Photos/RGB Strip front.jpg -------------------------------------------------------------------------------- /boards/SMD strip/shiftpwm_tlc5916_SMD_RGB.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/SMD strip/shiftpwm_tlc5916_SMD_RGB.brd -------------------------------------------------------------------------------- /boards/SMD strip/shiftpwm_tlc5916_SMD_RGB.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/boards/SMD strip/shiftpwm_tlc5916_SMD_RGB.sch -------------------------------------------------------------------------------- /examples/ShiftPWM_Non_Blocking/ShiftPWM_Non_Blocking.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/examples/ShiftPWM_Non_Blocking/ShiftPWM_Non_Blocking.ino -------------------------------------------------------------------------------- /examples/ShiftPWM_RGB_Example/ShiftPWM_RGB_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/examples/ShiftPWM_RGB_Example/ShiftPWM_RGB_Example.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/keywords.txt -------------------------------------------------------------------------------- /pins_arduino_compile_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elcojacobs/ShiftPWM/HEAD/pins_arduino_compile_time.h --------------------------------------------------------------------------------