summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2019-12-20 13:23:25 +0100
committerhorchi <vdr@jwendel.de>2019-12-20 13:23:25 +0100
commit6853f2b6327e468efb77fa989dfa6080c257cf6c (patch)
tree5fbd295b9b165806230e1cc69b2c242f054bbd3f /config.h
parenta5d6d09bfae8ee47d77dc4c0c5ef994b47240f44 (diff)
downloadvdr-plugin-seduatmo-6853f2b6327e468efb77fa989dfa6080c257cf6c.tar.gz
vdr-plugin-seduatmo-6853f2b6327e468efb77fa989dfa6080c257cf6c.tar.bz2
2019-12-20: Version 0.0.9\n Added config RGB order for each LED\n\n
Diffstat (limited to 'config.h')
-rw-r--r--config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.h b/config.h
index cb52d6f..6631c6f 100644
--- a/config.h
+++ b/config.h
@@ -29,7 +29,7 @@ class cSeduConfig : public cSeduService
int grabWidth;
int grabHeight;
- // adjust
+ // adjust
int threshold;
int adjGreen;
@@ -63,12 +63,12 @@ class cSeduConfig : public cSeduService
// functions
cLed* createLeds(cLedConfs* conf);
- void copyLeds(cSeduConfig* c)
+ void copyLeds(cSeduConfig* c)
{
ledCount = c->ledCount;
leds = new cLed[ledCount];
memset(leds, 0, ledCount*sizeof(cLed));
-
+
for (int i = 0; i < ledCount; i++)
leds[i] = c->leds[i];
}