I have successfully imported data from Brewfather into Node Red (no integration exists in Home Assistant). I am using this as a brewery fermentation controller, so I would like to turn the 3 steps below into an automation that changes a climate temp controller.
I’m stuck on how this data can get from Node Red to Home Assistant and into an automation… just at a loss of even the basic theoretical steps I would need to take. Once I have an idea of the framework, I can fumble my way through it!
The data is in Node Red as below:
{
"_id": "redacted",
"name": "Batch",
"batchNo": 39,
"status": "Fermenting",
"brewer": "Name",
"brewDate": 1663916400000,
"recipe": {
"name": "Fruit Bazooka",
"fermentation": {
"steps": [
{
"stepTemp": 17.777778,
"actualTime": 1664089200000,
"ramp": null,
"stepTime": 11,
"displayStepTemp": 64,
"type": "Primary",
"pressure": null,
"displayPressure": null
},
{
"displayStepTemp": 50,
"actualTime": 1665039600000,
"ramp": null,
"stepTime": 3,
"pressure": null,
"stepTemp": 10,
"displayPressure": null,
"type": "Primary",
"name": "Dry Hop"
},
{
"name": "Cold Crash",
"displayPressure": null,
"pressure": null,
"actualTime": 1665298800000,
"ramp": null,
"displayStepTemp": 35,
"stepTime": 2,
"type": "Primary",
"stepTemp": 1.666667
}
]
}
}
}