You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can capture the error of a ds18b20 ow sensor that is not connected and I expect no other error messages in the console
Actual behavior
With the ds18b20 sensor disconnected, there are bursts of RMT RX errors in the console. This is not always visible but arrives in intervals. This is tested with an idx v3.3-beta2 build from the #Nodemcu custom build page.
Expected behavior
I can capture the error of a ds18b20 ow sensor that is not connected and I expect no other error messages in the console
Actual behavior
With the ds18b20 sensor disconnected, there are bursts of RMT RX errors in the console. This is not always visible but arrives in intervals. This is tested with an idx v3.3-beta2 build from the #Nodemcu custom build page.
�[0;31mE (51114) rmt: RMT RX BUFFER FULL�[0m
�[0;31mE (51124) rmt: RMT RX BUFFER FULL�[0m
�[0;31mE (51134) rmt: RMT RX BUFFER FULL�[0m
�[0;31mE (51144) rmt: RMT RX BUFFER FULL�[0m
�[0;31mE (51154) rmt: RMT RX BUFFER FULL�[0m
�[0;31mE (51164) rmt: RMT RX BUFFER FULL�[0m
�[0;31mE (51174) rmt: RMT RX BUFFER FULL�[0m
Test code
Provide a Minimal, Complete, and Verifiable example which will reproduce the problem.
temp_pin = 27
readtemp(temp_pin) -- read ds18b20
main_timer = tmr.create()
main_timer:alarm(10000, tmr.ALARM_AUTO, function()
readtemp(temp_pin) -- read ds18b20
end)
The text was updated successfully, but these errors were encountered: