The original FireBoard had a much smaller LCD screen but the new Fire Board 2 screen is almost as good as the Signals. App experience is good, with a few more options including the ability to send text or email alerts when your alarms are hit. You can also set conditions on the alarm, for example only go off after a certain amount of time. Add to Wishlist FireBoard® is a Cloud Connected Smart Thermometer, designed for remote monitoring in both hot and cold environments. Easy to setup and install on your wireless network, the. How to activate a FireBoard by adding it to your account in the FireBoard App.Knowledge Base: https://docs.fireboard.io/. Coming from another well known brand of smoker and app, the FireBoard is on a whole nother level. The amount of days you can log is insane. Pit temp, probe temps, auger speed, all laid out beautifully with different views available. Being able to add time stamped notes with photos helps to truly hone the absolute perfect cook.
Yoder Smokers has partnered with FireBoard Labs in order to bring top notch technology to their Pellet smoker line in the “S” series.
With WiFI and Bluetooth capabilities, the temperature monitoring system from FireBoard is integrated with these smokers, allowing consumers to monitor their food and smoker temperatures via smartphone, tablet, or computer through the FireBoard App.
The Yoder Pellet Smokers have two ports for the temperature probes, either food or ambient probes. At some point it may be necessary to incorporate additional temperature ports, which can be done by using a stand alone FireBoard along with the Yoder. Both can be connected to the App, and temperatures can be monitored at the same time.
Follow the instructions in the Getting Started section to create an account and activate your YS embedded FireBoard.
The Yoder website conveniently offers a multitude of downloadable resources, including the User’s Manuals for the S Series featuring FireBoard ACS controllers.
Please refer to the manual for your style of smoker for more information about operations of your Yoder.
We at FireBoard are happy to answer any questions about the Yoder FireBoard and the FireBoard App and how they function.
To contact Yoder Smoker customer support, email customerservice@yodersmokers.com or call 877-409-6337
A great place to join the discussion about the Yoder Smokers is on the their community forum.
You can use the FireBoard REST API to access information from the FireBoard Cloud, including devices, sessions, and temperature channels. Requests are in JSON format and require a token authentication method.
The current FireBoard REST API version is v1.
To use the FireBoard REST API, you must have a FireBoard account.
The FireBoard REST API uses a simple token-based HTTP Authentication scheme. The unique account token can be retrieved through the login endpoint.
Sample response:
POST https://fireboard.io/api/rest-auth/login/
Parameter | Description |
---|---|
username | Your fireboard.io username or email address required |
password | Your fireboard.io account password required |
The FireBoard API expects the authentication token to be included in the Authorization
HTTP header for all request. The key should be prefixed by the string literal “Token”, with whitespace separating the two strings. For example:
Authorization: Token 9944bb9966cc22cc9418ad846dd0e4bbdfc6ee4b
The device API allows you to retrieve information about any FireBoard in the authenticated account.
Attribute | Type | Description |
---|---|---|
id | integer | Unique identifier resource. |
UUID | string | Alternative unique identifier resource. |
title | string | The name of the FireBoard. |
created | date-time | The date the FireBoard was added to the account. |
hardware_id | string | The serial number of the FireBoard. |
latest_temps | array | An array of the latest temperature readings from this FireBoard. Temperature readings older than 60 seconds are not included. |
device_log | object | Most recent log information from the FireBoard. |
channels | array | An array representing each channel/port on the FireBoard. Channels include labels, alert values, and notification settings. |
last_templog | date-time | The date of the last known temperature recorded by this FireBoard. |
The Devices endpoint allows you to view all FireBoards in your account.
GET https://fireboard.io/api/v1/devices.json
Retrieve detailed information about a specific device by referencing the Device’s UUID.
GET https://fireboard.io/api/v1/devices/<UUID>.json
Get the latest temperature values per channel from the device using the Temps endpoint. Temperature values are included if they are less than a minute old, otherwise nothing is returned for the channel.
GET https://fireboard.io/api/v1/devices/<UUID>/temps.json
Get the latest FireBoard Drive log information for your device using the Drivelog endpoint. Drive log information is returned if less than a minute old.
GET https://fireboard.io/api/v1/devices/<UUID>/drivelog.json
The session API allows you to retrieve information about any current or historical session in the authenticated account.
Attribute | Type | Description |
---|---|---|
id | integer | Unique identifier resource. |
title | string | The name of the session. |
duration | string | String representation of the total duration of this session (e.g. 5 hours, 30 minutes). |
created | date-time | The date the session was created in the FireBoard Cloud. |
start_time | date-time | The configurable start time for the session. |
start_time | date-time | The configurable end time for the session. |
description | string | A string contained notes entered by the user pertaining to the session. |
owner | object | An object representation of the owner’s account information. |
devices | array | An array of FireBoard devices that were used during the session. |
The Sessions endpoint allows you to view all sessions in your account
GET https://fireboard.io/api/v1/sessions.json
Retrieve detailed information about a specific session by referencing the session’s id.
GET https://fireboard.io/api/v1/sessions/<id>.json
The Chart endpoint provides all temperature data from the session in a format suitable for many charting frameworks. The optional drive parameter can be used to include FireBoard Drive data in the output.
Parameter | Description |
---|---|
drive | Pass this parameter in the query string with a value of 1 to include Drive data from your session e.g ?drive=1optional |
GET https://fireboard.io/api/v1/sessions/<id>/chart.json
The chart data is an array of objects representing a specific channel on a specific device.
Attribute | Type | Description |
---|---|---|
x | array | Array of unix timestamps |
y | array | Array of temperature values or Drive % |
degreetype | integer | Integer representing the degree type: 1=C°, 2=F° |
device | string | The UUID identifier of the device |
label | string | The configurable label of the channel |
Users will be limited to 200 API calls per hour, if this rate limit is exceeded then user access will be blocked for 30 minutes.
Best Practices:
Limits subject to change at discretion of FireBoard