hyperion.ng/libsrc/leddevice/schemas
penfold42 f96b0143a8 [untested] added Sk6822 led device support (#397)
* Adding support for sk6822 timing
This isnt complete, but should be a good starting point for others to learn from.

1) Here is where the led device source is located:

cd libsrc/leddevice

2) Find the files that need changing:

root@loungepi:libsrc/leddevice# grep -ri 2812spi *
CMakeLists.txt:         ${CURRENT_SOURCE_DIR}/LedDeviceWs2812SPI.h
CMakeLists.txt:         ${CURRENT_SOURCE_DIR}/LedDeviceWs2812SPI.cpp
LedDeviceFactory.cpp:   #include "LedDeviceWs2812SPI.h"
LedDeviceFactory.cpp:   REGISTER(Ws2812SPI);
LedDeviceSchemas.qrc:           <file alias="schema-ws2812spi">schemas/schema-ws2812spi.json</file>
LedDeviceWs2812SPI.cpp:#include "LedDeviceWs2812SPI.h"
LedDeviceWs2812SPI.cpp:LedDeviceWs2812SPI::LedDeviceWs2812SPI(const QJsonObject &deviceConfig)
LedDeviceWs2812SPI.cpp:LedDevice* LedDeviceWs2812SPI::construct(const QJsonObject &deviceConfig)
LedDeviceWs2812SPI.cpp: return new LedDeviceWs2812SPI(deviceConfig);
LedDeviceWs2812SPI.cpp:bool LedDeviceWs2812SPI::init(const QJsonObject &deviceConfig)
LedDeviceWs2812SPI.cpp:int LedDeviceWs2812SPI::write(const std::vector<ColorRgb> &ledValues)
LedDeviceWs2812SPI.h:class LedDeviceWs2812SPI : public ProviderSpi
LedDeviceWs2812SPI.h:   LedDeviceWs2812SPI(const QJsonObject &deviceConfig);

3) Copy the existing files as a starting point:

cp LedDeviceWs2812SPI.cpp LedDeviceSk6822SPI.cpp
cp LedDeviceWs2812SPI.h LedDeviceSk6822SPI.h
cp schemas/schema-ws2812spi.json schemas/schema-sk6822spi.json

4) Do some search and replacing:

:%s/Ws2812SPI/Sk6822SPI/g

5) edit the other files (see the diffs in this commit)

* Added wait time and reset time

* Fixed up debugging output and commented it out.
2017-02-14 09:33:28 +01:00
..
schema-adalight.json improve serial hotplug (#389) 2017-02-09 20:10:57 +01:00
schema-apa102.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-atmo.json improve serial hotplug (#389) 2017-02-09 20:10:57 +01:00
schema-atmoorb.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-dmx.json improve serial hotplug (#389) 2017-02-09 20:10:57 +01:00
schema-e131.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-fadecandy.json improve serial hotplug (#389) 2017-02-09 20:10:57 +01:00
schema-file.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-h801.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-hyperionusbasp.json refresh time for all devices + schema fixes (#305) 2016-12-02 12:07:24 +01:00
schema-lightpack.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-lpd6803.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-lpd8806.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-multilightpack.json refresh time for all devices + schema fixes (#305) 2016-12-02 12:07:24 +01:00
schema-p9813.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-paintpack.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-philipshue.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-piblaster.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-rawhid.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-sedu.json improve serial hotplug (#389) 2017-02-09 20:10:57 +01:00
schema-sk6812spi.json priorities rework, webc update (#366) 2017-01-17 21:53:35 +01:00
schema-sk6822spi.json [untested] added Sk6822 led device support (#397) 2017-02-14 09:33:28 +01:00
schema-tinkerforge.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-tpm2.json improve serial hotplug (#389) 2017-02-09 20:10:57 +01:00
schema-tpm2net.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-udpraw.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-ws281x.json priorities rework, webc update (#366) 2017-01-17 21:53:35 +01:00
schema-ws2801.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00
schema-ws2812spi.json Transit translation system (#309) 2016-12-04 19:32:23 +01:00