Giter Site home page Giter Site logo

Comments (4)

BillSobel avatar BillSobel commented on August 13, 2024

from python-tuya.

t0ny-peng avatar t0ny-peng commented on August 13, 2024

@BillSobel
Hi Bill,
I also have this connection refused problem with my plugs. So you mean, the mobile application Tuya has two methods to communicate with the devices:

  1. via TCP if Tuya app and plug are in the same LAN.
  2. via a MQTT broker provided by Tuya. App publishes a message to the broker topic which is listened by the plug.

Is that right? If so, is there any possible way to configure the MQTT broker address inside the plug? I assume it's fixed in the firmware.

from python-tuya.

BillSobel avatar BillSobel commented on August 13, 2024

from python-tuya.

caffeinatedMike avatar caffeinatedMike commented on August 13, 2024

@clach04 I also receive this error on a occasion & the device's state remains unchanged when it occurs. Typically, if I retry toggling the switch the device's state does successfully change (after a second or third try of toggling). So, I have a proposition, I think it'd be beneficial to add a try/except within a loop with range(3) to try changing the state up to three times to minimize these issues. Does that change seem like something you would allow?

For reference, I think this function is what we'd need to implement the proposed solution to.

    def _send_receive(self, payload):
        """
        Send single buffer `payload` and receive a single buffer.
        
        Args:
            payload(bytes): Data to send.
        """
        for i in range(3):
            try:
                s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
                s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
                s.settimeout(self.connection_timeout)
                s.connect((self.address, self.port))
                s.send(payload)
                data = s.recv(1024)
                s.close()
                return data
            except socket.error:
                continue

from python-tuya.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.