Hardware components: | ||||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 2 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
|
× | 1 | ||||
Software apps and online services: | ||||||
|
STORY
Idea
This is a story about making an pocket carry-able USB stick like IR Thermometer made using Arduino programming and some other stuff. The device will also have stopwatch function, kitchen timer and inactivity tracker function.
IR Thermometer is an IR radiation-based temperature sensing device which allows for the measurement of the average temperature of a surface it’s facing – most probably with Wien’s displacement law or Stefan–Boltzmann law from highs school physics.
A stopwatch is a basic time measurement device used in sports, scientific experiment, etc. to measure lapsed time. Today, hardware stopwatches (the analog type) are kind of extinct and replaced by a so-called smartphone app. A kitchen timer is a device that alerts cook by buzzing an alarm set such that something being cooked needs checking.
An inactivity tracker is a periodic timer that alerts a person to move after every X amount of time. This helps one to get a minute break from idle state and practice healthy life.
Making The Thing!
Step 1: Gather all the ingredients, imagine and make a mental map of what goes where!
Take measurements, make necessary holes, place components and solder.
Step 2: Use heat shrink tube and 0 Ohm resistors to interconnect things, 1k resistors on display segment pins, and solder according to the schematic.
Step 3: Interconnect both layers.
Step 4: Upload test code and check if everything operates. If so, align top and bottom layer with toothpicks and warp on both ends with thin tape.
Now, fill the gap with the hot glue and wait 5 minutes. Now, your sturdy device is ready to roll.
Writing the Software
Here, we will use our good old friend, Arduino IDE, to write the program.
Before we get into code, let’s get an idea how the hardware connections affect the code. The small white momentary push button is the menu selector switch which is interrupt driven; the same goes for the big red push button – connected for falling edge INT 0 and INT 1 on Digital Pin 2 and 3.
Digital pin 4 is the buzzer driver pin and A0 is the laser driver pin. A1, A2, A3 are display digit pins; pins 5-12 are segment pins. A4, A5 Digital Pins are for I2C communication with the IR sensor.
Finally, thanks to Dean Reading for the Arduino 7-Segment Library and Limor Fridge for the Arduino MXL90614 Library – life made easy! Based on their library example, the basic code is developed – right now only Ambient and Object Temperature detection function is enables.
I will add the other functions soon! So, stay tuned.
Circuit of IR Thermometer, Stopwatch, Cooking Timer, Inactivity Tracker
CODE
Read More: IR Thermometer, Stopwatch, Cooking Timer, Inactivity Tracker