Let me explain the state of the art of my device:
I have multiple (14) DS18B20 temperature sensors wired in the same bus in a non-parasite mode. Everything works great, and i am able to read all of them by the use of any of the examples in the DallasTemperature library.
However, when i use the "tester" example from this library, the sequence is wich each sensor is asked is not the same than the real sequence in which they are soldered in the bus. For me is so important to store the data from each sensor in a selected order, but also to same as much as posible of the arduino memory (beause in really, i do not have only one bus, but 4 of them, each one with a different number of sensors).
So, i think that a possible solution is to know the address of each sensor, and to call one by one in the order i could decide... but i think (i didn´t tested) it will result in a long code and huge memory usage... Am i right?
Any idea about how could i obtain the temperature of the sensors in the same sequency they are soldered, or any possible solution to this issue?
Thanks so much!