Logo Circuit Creations- Digital Temperature Controller & Switch Kit

The extensive capabilities of the microcontroller in this kit have been pre-programmed to provide temperature on-off control with digital set point.  This kit is a great building block for projects to monitor your computer fan air temperature, control fish or other tank temperatures, monitor your refrigerator, use in a gaming application, control a fan for cooling, control a heating element, create a temperature controlled switch, set off a freezing or overheating alarm, implement a room or equipment temperature thermostat…  Your imagination is the limit for what can be done with this kit.

Simple Digital Temperature Controller and Switch Kit Features

  • Typical 3C accuracy, no calibration required
  • LED indicator of temperature trip point
  • 7 switches to digitally select temperature set point in 0F or 0C, ranging from -10C to 100C
  • Small, 2.2” x 1.7”, double sided, 0.062" thick, Printed Circuit Board (PCB) with top side silk screening and mounting holes
  • Dedicated output is activated at temperature trip point and remains latched until reset
  • All microcontroller signals are accessible with through-hole pads at the edge of the PCB
  • Add your own circuits with surface mount and through-hole component prototyping section included on the PCB
  • Wide input voltage range (2.7V to 12V) with very low stand-by power, suitable for battery operation
  • Open collector output for connection to higher power circuits and relays
  • Switch selectable over or under temperature trip point

This kit consists of a Printed Circuit Board (PCB) and Electronic Components (Schematic, Instructions, Parts List are on our website: https://circuitcreations.com/manuals  ).  All kit contents are packaged in a resealable anti-static bag and shipped in a padded envelope.

Note: This is a kit and assembly is required.  You will need soldering tools and basic soldering skills.

Here's a video demonstration of the Digital Temperature Controller & Switch kit (after assembly).

Check out our other items and...

Be sure to visit us at www.circuitcreations.com.

Follow the pin connections listed below (also shown in the listing pictures) then copy the following code as an Arduino sketch to display temperature on your computer monitor:

Note: This kit does not include the Arduino hardware or interconnect wire.

/****************************************************************************************
* Sketch for Circuit Creations Digital Temperature Controller Kit 104 Monitor:
*
*       Pin Connection Map
* K104 Pad        Arduino Uno
* =============================
* VIN             5V
* GND            GND
* RA0             A2
*
****************************************************************************************/
 
// Include the necessary Libraries
#include <Arduino.h>
 
// Analog pins definition for temperature sensor
// Here we use analog pin 2 for temperature input
#define pinTemperature    2
 
// Declare and set initial state of the temperature value
float temperatureValue = 0;
 
void setup()
{  
  // Initialize serial communication at 9600 bits per second:
  Serial.begin(9600);
}
 
void loop()
{
  // Get temperature value
  temperatureValue = analogRead(pinTemperature);
 
  // Convert ADC result to temperature
  temperatureValue = ((temperatureValue * 5/1024) - 0.5) * 100;
 
  // Display temperature value every delay interval
  Serial.print(temperatureValue,1);
  Serial.print ("C     ");
  Serial.print ((temperatureValue * 9/5 + 32),1); // Convert to Fahrenheit
  Serial.print ("F");
  Serial.println();
  delay(500);  
}