
Here is a quick tip to get data from your BrewBench sensor into Home Assistant.

From the app, click on your sensor, then click on edit, find the IP address, then go to the URL in your browser to verify you can connect from the same network that your home assistant is on.
Here is info about the REST endpoint for home assistant, you can add humidity and ambient temp also,
https://www.home-assistant.io/integrations/sensor.rest/
Paste this, replacing your IP with the one in resource, in the configuration.yaml,
sensor:
- platform: rest
resource: http://10.0.1.6/info
scan_interval: 600
method: GET
name: "BrewBench - Yacht Fridge"
unit_of_measurement: "°F"
value_template: "{{ ((float(value_json.temp) * 9 / 5 ) + 32) | round(1) }}"
And watch it show up in the home assistant dashboard,


