Skip to content
Snippets Groups Projects
Commit 692f88af authored by KERDREUX Jerome's avatar KERDREUX Jerome
Browse files

Fix renamming

parent c616a7c6
No related branches found
No related tags found
No related merge requests found
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
Simple message encoding / decoding to test the search method Simple message encoding / decoding to test the search method
""" """
from xaal.lib import MessageFactory,MessageType from xaal.lib import MessageFactory, MessageType
from xaal.lib import config,core,helpers from xaal.lib import config, core, helpers, engine
from xaal.schemas import devices from xaal.schemas import devices
helpers.setup_console_logger() helpers.setup_console_logger()
...@@ -12,11 +12,12 @@ mf = MessageFactory(config.key) ...@@ -12,11 +12,12 @@ mf = MessageFactory(config.key)
source = devices.hmi() source = devices.hmi()
target = devices.lamp_color() target = devices.lamp_color()
data = mf.build_msg(source,[target.address,],MessageType.REQUEST,'turn_off',{'smooth':20}) data = mf.build_msg(source, [target.address], MessageType.REQUEST, 'turn_off', {'smooth': 20})
msg = mf.decode_msg(data) msg = mf.decode_msg(data)
assert msg
print(f"Message: {msg}") print(f"Message: {msg}")
core.run_method(msg,target) engine.run_action(msg, target)
method,params = core.search_method(msg,target) method, params = core.search_action(msg, target)
print(f"Method found: {method} params {params} ") print(f"Method found: {method} params {params} ")
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment