Using a compatible Intel-based platform, this project lets you create a smart fire alarm that:
- constantly monitors for unsafe temperature levels.
- issues an audible notification using the buzzer.
- issues a visual notification using the LCD.
- keeps track of fire events, using cloud-based data storage.
- sends text messages to alert others of a possible fire.
For all the samples in this repository, see the for required boards and libraries. You need either Grove or DFRobot sensors but not both.
You need to have a Grove* Shield connected to an Arduino* compatible breakout board to plug all the Grove* devices into the Grove* Shield. Make sure you have the tiny VCC switch on the Grove* Shield set to 5V.
| Sensor | Pin |
|---|---|
| Grove* Temperature Sensor | A0 |
| Grove* Buzzer | D5 |
| Grove* RGB LCD | I2C |
You need to have a LCD Keypad Shield connected to an Arduino* compatible breakout board to plug all the DFRobot* devices into the LCD Keypad Shield.
| Sensor | Pin |
|---|---|
| Analog Temperature Sensor | A3 |
| Buzzer | A2 |
More details on the hardware requirements can be found in the
and
- Node.js
- MRAA and UPM Node.js bindings
- Packages as listed in the package.json file in this example
- Microsoft Azure*, IBM Bluemix*, AT&T M2X*, AWS*, Predix*, or SAP* account (optional)
- Twilio* account (optional)
To optionally send text messages, you need to register for an account and get an API key from the Twilio* website:
You cannot send text messages without obtaining a Twilio API key first. You can still run the example, but without the text messages.
Pass your Twilio* API key and authentication token to the sample program by modifying the TWILIO_ACCT_SID and TWILIO_AUTH_TOKEN keys in the config.json file as follows:
{
"ALARM_THRESHOLD": 28,
"TWILIO_ACCT_SID": "YOURAPIKEY",
"TWILIO_AUTH_TOKEN": "YOURTOKEN"
}
To configure the example for the Grove* kit, just leave the kit key in the config.json set to grove. To configure the example for the DFRobot* kit, change the kit key in the config.json to dfrobot as follows:
{
"kit": "dfrobot",
"ALARM_THRESHOLD": 28
}
To configure the example for the Arduino 101, add a platform key with the value firmata to the config.json, as follows:
{
"kit": "grove",
"platform": "firmata",
"ALARM_THRESHOLD": 28
}
To configure the example for sending optional text messages, obtain an API key from the Twilio* web site as explained above, and then add the TWILIO_ACCT_SID and TWILIO_AUTH_TOKEN keys to the config.json file as follows:
{
"kit": "grove",
"ALARM_THRESHOLD": 28,
"TWILIO_ACCT_SID": "YOURAPIKEY",
"TWILIO_AUTH_TOKEN": "YOURTOKEN"
}
To configure the example for the optional Microsoft Azure*, IBM Bluemix*, or AWS data store, add the SERVER and AUTH_TOKEN keys in the config.json file as follows:
{
"kit": "grove",
"ALARM_THRESHOLD": 28,
"SERVER": "http://intel-examples.azurewebsites.net/logger/fire-alarm",
"AUTH_TOKEN": "s3cr3t"
}
To configure the example for both the text messages and the Microsoft Azure*, IBM Bluemix*, or AWS data store, add the TWILIO_ACCT_SID, TWILIO_AUTH_TOKEN, SERVER, and AUTH_TOKEN keys in the config.json file as follows:
{
"kit": "grove",
"ALARM_THRESHOLD": 28,
"TWILIO_ACCT_SID": "YOURAPIKEY",
"TWILIO_AUTH_TOKEN": "YOURTOKEN",
"SERVER": "http://intel-examples.azurewebsites.net/logger/fire-alarm",
"AUTH_TOKEN": "s3cr3t"
}
For information on how to configure the example for an optional Microsoft Azure*, IBM Bluemix*, AT&T M2X*, AWS*, Predix*, or SAP* IoT cloud server, go to:
https://github.com/intel-iot-devkit/iot-samples-cloud-setup
To run this example on the board, simply enter
$ npm install
$ npm run
$ ./fire-alarm
You will see output similar to below when the program is running.
[Upload Complete] fire alarm
Connecting to MQTT server...
MQTT message published: { d: { value: 'fire alarm', datetime: '2016-04-22T03:17:28.279Z' } }
SMS sent { sid: 'SMdd79f27e8e184ee891225854888ef009',
date_created: 'Fri, 22 Apr 2016 03:17:29 +0000',
Refer to for details on the functionality.
You can optionally store the data generated by this sample program using cloud-based IoT platforms from Microsoft Azure*, IBM Bluemix*, AT&T M2X*, AWS*, Predix*, or SAP*.
For information on how to connect to your own cloud server, go to:
https://github.com/intel-iot-devkit/iot-samples-cloud-setup
Optionally, you can store the data generated by this sample program in a back-end database deployed using Microsoft Azure*, IBM Bluemix*, or AWS, along with Node.js*, and a Redis* data store.
For information on how to set up your own cloud data server, go to:
https://github.com/intel-iot-devkit/intel-iot-examples-datastore
IMPORTANT NOTICE: This software is sample software. It is not designed or intended for use in any medical, life-saving or life-sustaining systems, transportation systems, nuclear systems, or for any other mission-critical application in which the failure of the system could lead to critical injury or death. The software may not be fully tested and may contain bugs or errors; it may not be intended or suitable for commercial release. No regulatory approvals for the software have been obtained, and therefore software may not be certified for use in certain countries or environments.