Links

Custom Stream

Integrate your own logging device with a custom HTTP POST to the URL you are given in the settings.
Enable custom stream in the settings page
Use the following JSON format in the body of the POST:
{
"name": "YourDeviceName", // Required field, this will be the ID in Brewfather
"temp": 20.32,
"aux_temp": 15.61, // Fridge Temp
"ext_temp": 6.51, // Room Temp
"temp_unit": "C", // C, F, K
"gravity": 1.042,
"gravity_unit": "G", // G, P
"pressure": 10,
"pressure_unit": "PSI", // PSI, BAR, KPA
"ph": 4.12,
"bpm": 123, // Bubbles Per Minute
"comment": "Hello World",
"beer": "Pale Ale",
"battery": 4.98
}
Temperature units "C" for celcius, "F" for fahrenheit, "K" for kelvin. Gravity units "G" for SG and "P" for Plato. Pressure units "PSI", "BAR", "KPA".
Never log more than once every 15 minutes per device name, request logged more often than that will be ignored. If you are logging more than one device give them each a unique name, maximum rate: one POST per device per 15 minutes.
Field "name" is required. Other fields are optional. At least one value field must be provided (Temp, gravity or pressure, etc).
If your device support https you can also replace http with https in the logging URL.

Example HTTP POST

POST /stream?id=yourpersonalid HTTP/1.1
Host: log.brewfather.net
Content-Type: application/json
Content-Length: 57
{
"name": "YourDeviceName",
"pressure": 2.43
}