Communication between LoPy and Node.JS server
-
I have a LoPy collecting sensor data that I need to send to a Node.JS server running in a standard PC, wirelessly. I managed to get the LoPy and the PC connected to the same Wi-Fi network, but I have no idea how to send the data between them. This is what I have:
from network import WLAN wlan = WLAN(mode=WLAN.STA) nets = wlan.scan() for net in nets: if net.ssid == 'network': print('Network found!') wlan.connect(net.ssid, auth=(net.sec, 'password'), timeout=5000) print('WLAN connection succeeded!') break