Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hauptbahnhof
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
stustanet
hauptbahnhof
Commits
9ea23bbe
Commit
9ea23bbe
authored
6 years ago
by
Johannes Walcher
Browse files
Options
Downloads
Patches
Plain Diff
fixed configs, linting
parent
116e64c7
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
babel/babel.py
+15
-11
15 additions, 11 deletions
babel/babel.py
hauptbahnhof/hauptbahnhof.py
+9
-8
9 additions, 8 deletions
hauptbahnhof/hauptbahnhof.py
with
24 additions
and
19 deletions
babel/babel.py
+
15
−
11
View file @
9ea23bbe
...
...
@@ -15,20 +15,22 @@ class Babel:
self
.
hbf
.
subscribe
(
'
/haspa/power
'
,
self
.
command_translate
)
self
.
hbf
.
subscribe
(
'
/haspa/power/requestinfo
'
,
self
.
command_requestinfo
)
self
.
ledstrip_states
=
[[
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
0
]]
self
.
espids
=
[
'
a9495a00
'
,
'
024c
5a00
'
]
self
.
ledstrip_states
=
[[
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
0
]]
self
.
espids
=
[
'
a9495a00
'
,
'
c14e
5a00
'
]
# TODO create this mapping:
# mapps from (color, id) ==> (self.ledstrip indexes)
self
.
idxpair
=
{
(
'
c
'
,
1
):(
0
,
0
),
(
'
w
'
,
1
):(
0
,
1
),
(
'
c
'
,
2
):(
0
,
2
),
(
'
w
'
,
2
):(
0
,
3
),
(
'
c
'
,
3
):(
1
,
0
),
(
'
w
'
,
3
):(
1
,
1
),
(
'
c
'
,
4
):(
1
,
2
),
(
'
w
'
,
4
):(
1
,
3
),
# The first one has cold and warm swapped...
(
'
c
'
,
1
):(
0
,
1
),
(
'
w
'
,
1
):(
0
,
0
),
(
'
c
'
,
2
):(
0
,
3
),
(
'
w
'
,
2
):(
0
,
2
),
# This one has cold and warm right
(
'
c
'
,
3
):(
1
,
0
),
(
'
w
'
,
3
):(
1
,
1
),
(
'
c
'
,
4
):(
1
,
2
),
(
'
w
'
,
4
):(
1
,
3
),
}
self
.
rupprecht_map
=
{
...
...
@@ -38,6 +40,7 @@ class Babel:
}
async
def
teardown
(
self
):
"""
clean up after yourself
"""
await
self
.
hbf
.
teardown
()
async
def
command_translate
(
self
,
client
,
message
,
_
):
...
...
@@ -45,6 +48,7 @@ class Babel:
space.get_number_of_network_devices() -> int
Return the number of non-stationary, connected network devices.
"""
del
client
group_changed
=
False
msg
=
{}
for
lamp
,
value
in
message
.
items
():
...
...
@@ -60,7 +64,7 @@ class Babel:
group_changed
|=
self
.
ledstrip_states
[
a
][
b
]
!=
int
(
value
)
self
.
ledstrip_states
[
a
][
b
]
=
int
(
value
)
elif
len
(
tmp
)
==
2
and
tmp
[
1
]
in
(
'
c
'
,
'
w
'
):
elif
len
(
tmp
)
==
2
and
tmp
[
1
]
in
(
'
c
'
,
'
w
'
):
for
color
,
position
in
self
.
idxpair
:
if
color
==
tmp
[
1
]:
idx
=
self
.
idxpair
[(
color
,
position
)]
...
...
This diff is collapsed.
Click to expand it.
hauptbahnhof/hauptbahnhof.py
+
9
−
8
View file @
9ea23bbe
...
...
@@ -27,6 +27,8 @@ class Hauptbahnhof:
# find master config
self
.
_config
=
self
.
config
(
"
hauptbahnhof
"
)
self
.
_host
=
self
.
_config
[
'
host
'
]
self
.
_subscriptions
=
{}
self
.
_mqtt
=
None
self
.
_mqtt_queue
=
[]
...
...
@@ -65,27 +67,26 @@ class Hauptbahnhof:
mqtt
.
loop_start
()
mqtt
.
on_message
=
self
.
on_message
mqtt
.
on_connect
=
lambda
client
,
userdata
,
flags
,
rc
:
self
.
connected
.
set
()
try
:
await
mqtt
.
connect
(
self
.
_
config
[
'
host
'
]
)
except
KeyError
:
self
.
log
.
error
(
"
Could not connect to %s
"
%
self
.
_
config
[
'
host
'
]
)
await
mqtt
.
connect
(
self
.
_host
)
except
:
self
.
log
.
error
(
"
Could not connect to %s
"
,
self
.
_host
)
self
.
loop
.
cancel
()
raise
await
self
.
connected
.
wait
()
self
.
log
.
info
(
"
C
onnected to %s
"
%
self
.
_config
[
'
host
'
])
self
.
log
.
info
(
"
Successfully c
onnected to %s
"
,
self
.
_config
[
'
host
'
])
for
topic
in
self
.
_subscriptions
:
mqtt
.
subscribe
(
topic
)
while
self
.
_mqtt_queue
:
topic
,
msg
=
self
.
_mqtt_queue
.
pop
(
0
)
self
.
log
.
debug
(
"
Topic: %s
"
%
topic
)
self
.
log
.
debug
(
"
Topic: %s
"
,
topic
)
await
self
.
_mqtt
.
publish
(
topic
,
msg
)
# Now we have mqtt available!
self
.
_mqtt
=
mqtt
self
.
log
.
info
(
"
Startup done
"
)
async
def
message_processing
(
self
):
while
True
:
...
...
@@ -104,7 +105,7 @@ class Hauptbahnhof:
await
asyncio
.
gather
(
*
[
fut
(
client
,
payloadobj
,
msg
)
for
fut
in
futures
])
except
json
.
JSONDecodeError
:
self
.
log
(
"
Invalid json received: %s
"
%
payload
)
except
Exception
as
e
:
except
Exception
:
traceback
.
print_exc
()
def
on_message
(
self
,
client
,
userdata
,
msg
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment