Hello everyone,
I am trying to connect my raspberry to a temperature sensor using i2c and 1-wire (whit DS2482-800). As I understand it, it is necessary to communicate to the 1-wire using the following protocol
S: START Condition
AD,0: select DS2482
...etc
But I do not know how to do this.
I have read that you can use commands from the smbus library, such as "bus.write_i2c_block_data()" or "bus.read_i2c_block_data()".
So, Are these commands correct for proper communication between i2c and 1-wire? If so, how is its correct use?
Thanks
