mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 01:56:27 +02:00
12 lines
286 B
Python
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)
|