parent
6f248ca809
commit
62b7cbbeab
@ -0,0 +1,9 @@ |
||||
{ |
||||
"hue": { |
||||
"address": "", |
||||
"username": "" |
||||
}, |
||||
"speech": { |
||||
"device_index": 30 |
||||
} |
||||
} |
@ -0,0 +1,41 @@ |
||||
{ |
||||
"default": { |
||||
"color": {178, 199, 255}, |
||||
"brightness": 255 |
||||
}, |
||||
|
||||
"dim": { |
||||
"color": {178, 199, 255}, |
||||
"brightness": 111 |
||||
}, |
||||
|
||||
"dim": { |
||||
"color": {178, 199, 255}, |
||||
"brightness": 80 |
||||
}, |
||||
|
||||
"red": { |
||||
"color": {255, 0, 0}, |
||||
"brightness": 255 |
||||
}, |
||||
|
||||
"green": { |
||||
"color": {0, 255, 0}, |
||||
"brightness": 255 |
||||
}, |
||||
|
||||
"blue": { |
||||
"color": {0, 0, 255}, |
||||
"brightness": 255 |
||||
}, |
||||
|
||||
"ice" : { |
||||
"color": {80, 100, 255}, |
||||
"brightness": 120 |
||||
}, |
||||
|
||||
"sleep": { |
||||
"color": {185, 155, 25}, |
||||
"brightness": 60 |
||||
} |
||||
} |
@ -0,0 +1 @@ |
||||
|
@ -0,0 +1,12 @@ |
||||
import json |
||||
|
||||
def readconfig(path): |
||||
#try: |
||||
with open(path) as cfg: |
||||
data = json.load(cfg) |
||||
|
||||
return data |
||||
|
||||
#except: |
||||
#print("[Error] Something went wrong reading the configuration file.") |
||||
#print("--", path) |
Loading…
Reference in new issue