Skip to main content

um substituto para em vez de uma comunicação RF utilizar wifi

Project description

comu

server

init

from comu.ser import se

s = se(net=True)
#se(net={'SSID':...,'PASSWORD':....})

recv

from time import sleep

while True:
    data = s.recv()
    if data:
        print(data)
    sleep(1)

send

from time import sleep

x = 0

while True:
    s.send(x)
    x+=1
    sleep(1)

client

from comu.cli import ci

c = ci(net=True)
#ci(net={'ssid':...,'password':....}) or ci()

recv

from time import sleep

while True:
    data = c.recv()
    if data:
        print(data)
    sleep(1)

send

from time import sleep

x = 0

while True:
    c.send(x)
    x+=1
    sleep(1)

close server

c.close() # or s.close()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

micropython_wifi_communication-0.0.9.tar.gz (4.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page