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
45249e47
Commit
45249e47
authored
6 years ago
by
Johannes Walcher
Browse files
Options
Downloads
Patches
Plain Diff
added /haspa/power/status message
parent
512b4a41
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
TOPICS.md
+4
-0
4 additions, 0 deletions
TOPICS.md
babel/babel.py
+19
-7
19 additions, 7 deletions
babel/babel.py
with
23 additions
and
7 deletions
TOPICS.md
+
4
−
0
View file @
45249e47
...
...
@@ -65,6 +65,10 @@ Response for requestinfo
DATA: {'light':{'desc':'a light'}}
## /haspa/power/status
Request to issue a full power status message to update all clients
DATA: {}
## /haspa/status
Message that the haspa status has changed, please somebody decide what to do.
...
...
This diff is collapsed.
Click to expand it.
babel/babel.py
+
19
−
7
View file @
45249e47
...
...
@@ -14,6 +14,7 @@ class Babel:
self
.
hbf
=
Hauptbahnhof
(
loop
)
self
.
hbf
.
subscribe
(
'
/haspa/power
'
,
self
.
command_translate
)
self
.
hbf
.
subscribe
(
'
/haspa/power/requestinfo
'
,
self
.
command_requestinfo
)
self
.
hbf
.
subscribe
(
'
/haspa/power/status
'
,
self
.
command_requeststatus
)
self
.
ledstrip_states
=
[[
0
,
0
,
0
,
0
],
[
0
,
0
,
0
,
0
]]
self
.
espids
=
[
'
a9495a00
'
,
'
c14e5a00
'
]
...
...
@@ -33,9 +34,9 @@ class Babel:
}
self
.
rupprecht_map
=
{
'
table
'
:
'
rupprecht-table
'
,
'
alarm
'
:
'
rupprecht-alarm
'
,
'
fan
'
:
'
rupprecht-fan
'
,
'
table
'
:
(
'
rupprecht-table
'
,
0
),
'
alarm
'
:
(
'
rupprecht-alarm
'
,
0
),
'
fan
'
:
(
'
rupprecht-fan
'
,
0
),
}
async
def
teardown
(
self
):
...
...
@@ -50,10 +51,11 @@ class Babel:
del
client
group_changed
=
False
msg
=
{}
for
lamp
,
value
in
message
.
items
():
for
lamp
,
value
in
sorted
(
message
.
items
()
)
:
## The lamp is managed by rupprecht
if
lamp
in
self
.
rupprecht_map
:
msg
[
self
.
rupprecht_map
[
lamp
]]
=
int
(
value
)
msg
[
self
.
rupprecht_map
[
lamp
][
0
]]
=
int
(
value
)
self
.
rupprecht_map
[
lamp
][
1
]
=
int
(
value
)
## The lamp is a led strip and needs to be aggregated
if
lamp
.
startswith
(
'
ledstrip
'
):
...
...
@@ -75,13 +77,12 @@ class Babel:
group_changed
|=
self
.
ledstrip_states
[
idx
[
0
]][
idx
[
1
]]
!=
int
(
value
)
self
.
ledstrip_states
[
idx
[
0
]][
idx
[
1
]]
=
int
(
value
)
self
.
hbf
.
log
.
info
(
"
Done mapping:
"
)
self
.
hbf
.
log
.
info
(
self
.
ledstrip_states
)
if
group_changed
:
for
idx
,
ledidx
in
enumerate
(
self
.
espids
):
msg
[
ledidx
]
=
self
.
ledstrip_states
[
idx
]
await
self
.
hbf
.
publish
(
'
/haspa/led
'
,
msg
)
print
(
"
M
SG
:
"
,
msg
)
print
(
"
M
apped Reduced Message
:
"
,
msg
)
async
def
command_requestinfo
(
self
,
client
,
msg
,
_
):
"""
...
...
@@ -91,3 +92,14 @@ class Babel:
await
self
.
hbf
.
publish
(
'
/haspa/power/info
'
,
{
'
documentation
'
:
'
too lazy to implement
'
})
async
def
command_requeststatus
(
self
,
client
,
msg
,
_
):
msg
=
{}
for
idx
,
espid
in
enumerate
(
self
.
espids
):
msg
[
espid
]
=
self
.
ledstrip_states
[
idx
]
for
rupid
,
value
in
self
.
rupprecht_map
.
values
():
msg
[
rupid
]
=
value
print
(
"
Full message:
"
,
msg
)
await
self
.
hbf
.
publish
(
'
/haspa/led
'
,
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