Mercurial > code > home > repos > homeauto
annotate service/piNode/config/main.n3 @ 1754:92999dfbf321 default tip
add shelly support
author | drewp@bigasterisk.com |
---|---|
date | Tue, 04 Jun 2024 13:03:43 -0700 |
parents | 9636e950373e |
children |
rev | line source |
---|---|
182 | 1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
2 @prefix : <http://projects.bigasterisk.com/room/> . | |
266
1ae78fe6f36e
neopixel lib change. factor out pwm setup and try another pwm rate
drewp@bigasterisk.com
parents:
262
diff
changeset
|
3 @prefix order: <http://projects.bigasterisk.com/room/ledColorOrder/> . |
182 | 4 @prefix ha: <http://bigasterisk.com/homeauto/> . |
5 @prefix sensor: <http://bigasterisk.com/homeauto/sensor/> . | |
6 @prefix houseLoc: <http://bigasterisk.com/homeauto/houseLoc/> . | |
7 | |
8 | |
346 | 9 @prefix boardTest: <http://bigasterisk.com/homeauto/boardTest/pin/> . |
260
88a9f78a7fa2
new changing table computer in config
drewp@bigasterisk.com
parents:
246
diff
changeset
|
10 |
346 | 11 ha:node10 a :PiBoard; |
12 :hostname "xbang"; :hasPin boardTest:GPIO18 . | |
260
88a9f78a7fa2
new changing table computer in config
drewp@bigasterisk.com
parents:
246
diff
changeset
|
13 |
346 | 14 boardTest:GPIO18 :gpioNumber 18; :connectedTo :testRgb . |
15 :testRgb a :RgbPixels; | |
266
1ae78fe6f36e
neopixel lib change. factor out pwm setup and try another pwm rate
drewp@bigasterisk.com
parents:
262
diff
changeset
|
16 :colorOrder order:GRB; |
346 | 17 :pixelGroup :testStatus, :testStrip . |
304
e7cbf250188a
influx output, fade support, switch to Adafruit_DHT, start of Lcd8544
drewp@bigasterisk.com
parents:
289
diff
changeset
|
18 |
346 | 19 :testStatus |
20 :startIndex 0; | |
21 :endIndex 0; | |
22 :src "rainbow.png"; | |
23 :x 0; | |
24 :y 0; | |
25 :height 1; | |
26 :interpolate :slide; | |
27 :rate 30 . # px/sec | |
28 :testStrip | |
29 :startIndex 1; | |
30 :endIndex 50; | |
31 :src "rainbow.png"; | |
32 :x 0; | |
33 :y 0; | |
34 :height 50; | |
35 :interpolate :slide . |