LoPy connect to sever, after receive data, send out using LoRa



  • I set connect to my Lab WiFi in boot.py
    It work as a client to my computer server.
    It can send and receive data using TCP.
    Now i want to send a data using LoRa after i receive the reply from server.

    from network import LoRa
    import socket
    import time

    addr_info = socket.getaddrinfo("192.168.1.15", 1234)
    addr = addr_info[0][-1]

    ss = socket.socket()
    ss.connect(addr)

    lora = LoRa(mode=LoRa.LORA, frequency=912000000)
    s = socket.socket(socket.AF_LORA, socket.SOCK_RAW)
    s.setblocking(False)
    while True:
    ss.send("Hello server")
    data = ss.recv(1024)
    print(data)
    if ss.recv(1024) == True:
    s.setblocking(True)
    s.send('Ping')
    s.setblocking(False)
    dataa = s.recv(64)
    print(dataa)

    Is it that LoPy only support one socket? what wrong with my code.
    It only work one time with my server and did not send any data using LoRa to my other LoPy.
    Thanks for reply!



Pycom on Twitter