esphome / esphome-docs

Source for esphome.io documentation files.
https://esphome.io/
Other
352 stars 1.82k forks source link

Update send_wait_time text to reflect modbus timing changes #4399

Open exciton opened 1 month ago

exciton commented 1 month ago

Documentation update to reflect change in how send_wait_time is handled in modbus.

Previously send_wait_time had to be set to the longest possible message on the bus, which is difficult to calculate, and error prone. It would clobber incoming messages by sending outgoing commands in the middle of receipt.

New functionality changes this to wait for the response to be complete, and then sending the next command.

Now send_wait_time only needs to be large enough to allow time for devices to send their first byte of response.

Description:

Related issue (if applicable): fixes

Pull request in esphome with YAML changes (if applicable): esphome/esphome#7674

Checklist:

netlify[bot] commented 1 month ago

Deploy Preview for esphome ready!

Name Link
Latest commit 37118ceb8477c2728cecd0e7fd153aeffd5c6f13
Latest deploy log https://app.netlify.com/sites/esphome/deploys/67207d09886c7d000894220d
Deploy Preview https://deploy-preview-4399--esphome.netlify.app
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

exciton commented 2 weeks ago

@jesserockz - this relates to PR #7674 which is already merged