Thakn you, I did see that article, but I am having trouble finding in the documentation that shows us the script parameters for reading the 1-wire temperature registers, so how do I modify this script to add the 1-wire data for sensor00, sensor01, and so on (below is the example with gsm data, we need the 1-wire data):
#!/bin/ash
while true
do
date > /tmp/regfile #where data will be stored
gsmctl -X >> /tmp/regfile
gsmctl -E >> /tmp/regfile
sleep 5
done
Thank you