Hi Jonathon,
Did you ever get the OW-SERVER and HA7Net up and running on Home Assistant?
If not, here is an example of how to read 3 DS18B20 connected to a HA7Net:
scrape:
- resource: http://10.0.10.72/1Wire/ReadTemperature.html?Address_Array=3000000E36A5BC28,1500000E382FDB28,2000000E37E01728
timeout: 15
sensor:
- name: "DS18B20 3000000E36A5BC28 with YAML"
select: ".HA7Value"
index: 3
attribute: value
unit_of_measurement: "°C"
- name: "DS18B20 1500000E382FDB28 with YAML"
select: ".HA7Value"
index: 8
attribute: value
unit_of_measurement: "°C"
- name: "DS18B20 2000000E37E01728 with YAML"
select: ".HA7Value"
index: 13
attribute: value
unit_of_measurement: "°C"
You can also use the UI instead of the YAML setup, but you will need to drop the parentheses around the “.HA7Value”.
There is also a thread on using the RESTful sensor & RESTful Command to read and write to 1-Wire devices connected to the OW-SERVER:
Thanks!