An arduino heat-sensitive alarm
We built a small heat-sensitive fire alarm from what you can find in the Arduino Starter-kit. Took us about 10min to set up the wiring, another 4-5min to code the alarm, and another 30min(!) to create this video.
Feel free to play around with the source code:
const int tempPin = A0;
const int soundPin = 8;
const float baselineTemp = 20.0;
int oldTemp = 0;
void setup() {
for (int pin = 3; pin <= 5; pin++) {
pinMode(pin, OUTPUT);
digitalWrite(pin, 0);
}
digitalWrite(5, 1);
}
void loop() {
int sensorVal = analogRead(tempPin);
float voltage = (sensorVal/1024.0) * 5.0;
float temperature = (voltage - .5) * 100;
digitalWrite(3, 0);
digitalWrite(4, 0);
if (temperature > 25.0) {
digitalWrite(4, 1);
}
if (temperature > 27.0) {
tone(soundPin, temperature * (temperature / 2), 50);
digitalWrite(3, 1);
}
}
-
Human-first interaction technology
In a globalised world, personal travel experiences matter more than ever Today's consumers can access the world like never before. We can plan our trips through other travel...
Read more -
Aktivo – Democratising healthy lifestyles
Be the Best Version of YouA new and very innovative Singaporean startup in the hot med-tech space, received a well-deserved face-lift of their mobile app and website by us at ...
Read more -
Making your store a VIP destination
In 2018 most average retailers will use location technology to map customer movements in their stores, place items where they're most likely to be seen and send offers, survey...
Read more -
Meaningful Loyalty — PRE:MIND
Talk to the hand because the brand ain't listeningLooking into the top lists of hotel loyalty programs in 2017, there is one common factor that begs the question:Where is the ...
Read more -
Blipster tracking and reacting to in-door movement of individuals in Jakarta, Indonesia
Registering participantsThe registration process has opened at the Marriott Hotel in Jakarta Bl...
Read more