esds/tests/api_sendt_wlan0_1s2r/receiver.py
2022-09-09 13:16:42 +02:00

14 lines
309 B
Python

#!/usr/bin/env python
from esds import RCode
def receive(node):
##### Simple receive
code, data=node.receive("wlan0")
msg="Received: "+data if code == RCode.SUCCESS else "Receive failed code="+str(code)
node.log(msg)
def execute(api):
# Should works for all receivers
receive(api)