Improve tests

This commit is contained in:
Loic Guegan 2022-06-30 12:11:59 +02:00
parent 1bef51d878
commit d0ae9f3296
85 changed files with 77 additions and 44 deletions

View file

@ -0,0 +1,13 @@
#!/usr/bin/env python
def receive(node):
##### Simple receive
code, data=node.receive("wlan0")
msg="Received: "+data if code == 0 else "Receive failed code="+str(code)
node.log(msg)
def execute(api):
# Should works for all receivers
receive(api)