Sujet : Re: 1-wire behaviour on Bookworm
De : news (at) *nospam* druck.org.uk (druck)
Groupes : comp.sys.raspberry-piDate : 20. Sep 2024, 21:38:09
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vckmfh$17vkc$2@dont-email.me>
References : 1 2
User-Agent : Mozilla Thunderbird
On 20/09/2024 11:17, John Aldridge wrote:
[Reading ds18b20 sensors in parallel]
No, but AIUI the "right" way to do this is to send the text "trigger" to
/sys/bus/w1/devices/w1_bus_master1/therm_bulk_read before reading the
values as normal. The trigger causes them all to start a conversion at
once, following which the reads all complete immediately once a single
conversion time has elapsed.
As a quick hack, try executing the following before reading your
sensors...
sudo su <<EOF
echo trigger > /sys/bus/w1/devices/w1_bus_master1/therm_bulk_read
EOF
Thanks, that seems to works for the first bus, but I get a permission denied when using w1_bus_master2.
---druck