🤖Have you ever tried Chat.M5Stack.com before asking??😎
    M5Stack Community
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    UDP data transmission

    Scheduled Pinned Locked Moved Micropython
    1 Posts 1 Posters 4.0k Views 1 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • B Offline
      brvus76
      last edited by

      Happy new year to everyone!
      I am working with UIFlow (and uPython) to allow an UDP communication with a software on my PC.
      I need to send a certain string over my network and this is the code that I wrote:

      from m5stack import
      from m5stack_ui import
      from uiflow import
      import wifiCfg
      import socket
      from easyIO import
      screen = M5Screen()
      screen.clean_screen()
      screen.set_screen_bg_color(0xFFFFFF)
      wifiCfg.doConnect('NET', 'PSW')
      udpsocket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
      udpsocket.connect(('', 52790))
      while True:
      udpsocket.sendto(str((analogRead(36))), ('255.255.255.255', 52791))
      wait_ms(1)

      Everything works, but the communication is really slow, less than 50 messages per second.
      When I use Arduino IDE, I can do the same at a sample rate of 500 messages per second.
      Is this a limitation of uPython or do I commit an error?

      Thank you very much and best regards

      1 Reply Last reply Reply Quote 0

      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

      With your input, this post could be even better 💗

      Register Login
      • First post
        Last post