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

12 lines
286 B
Python

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