HOME     STORE     BLOG     SCHEMATICS     TUTORIALS     DOWNLOADS     CONTACT

Temperature Control using a DS1621 Sensor and a ATtiny 2313 Micrcontroller
 
Temperature Control using a DS1621 Sensor and a ATtiny 2313 Micrcontroller


 

Temperature Control using a DS1621 Sensor and a ATtiny 2313 Micrcontroller

 


This circuit uses a Dallas DS1621 temperature sensor which indicates the temperature of the device. The temperature sensor has an thermal alarm output, which becomes high when the temperature of the device exceeds a user defined value. When the temperature drops below a user defined value, the alarm output becomes low. In this way any amount of hysteresis can be programmed. The values are stored in a special register of the device that is nonvolatile. The signal of the alarm output is amplified by a BC557 PNP transistor, that drives a relay that can switch a heater element or a blower on or off. The temperature settings and readings are communicated to/from the device over a simple 2-wire serial interface. An ATMEL 90S2313 microcontroller controls the serial communication to/from the DS1621.The microcontroller also controls three LED, only one of the LED's is on when the temperature is within a certain range. The range of the temperature in which the LED's are on can be set by the user in the program code. The circuit needs to be powered by a 5V power supply, which can be obtained from a wall-wart.


Temperature Control using a DS1621 Sensor and a ATtiny 2313 Micrcontroller

Features:
Measures temperatures from -55°C to +125°C
Three LED's to indicate in what range the temparature is.
User definable thermostat with high and low settings
Output via a relay to control a heater element or a blower fan (or something else)
Power supply ......................4.5 to 5.5 VDC
Power consumption ...........15mA


Hardware

It contains only a few parts, a DS1621 temperature sensor, a attiny2313 micrcontroller,three LED's one relay and some resitors. I have made a little printed circuit board for it.
Software

The software for this projects is made with the AVR Bascom compiler.



' ***************************************************************************
' *
' * Title : Temperature indicator
' * Version : 1.0
' * Last Updated : 15.03.2003
' * Target : At90s2313
' * Author : r.meurs@planet.nl
' * Program code : BASCOM AVR
' * Hardware req. : Temperatue indicator board
' *
' *
' * Description
' * This application reads the temperature from an DS1621 temp. sensor
' * One of three LED's is on when the temperature is within a certain range.
' *
' ****************************************************************************

Dim Tempmsb As Byte
Dim Templsb As Byte
Dim L_on As Byte
Dim L_off As Byte
Dim Tl As Byte
Dim Th As Byte
Dim Confg As Byte
Dim Count As Byte
Dim Slope As Byte
Declare Sub Get_temp
Declare Sub Write_th
Declare Sub Write_tl


Config Portb = Output
Portb = 255
Config Sda = Portd.0
Config Scl = Portd.1

Cls
Cursor Off
Goto Main

Sub Write_th
I2cstart
I2cwbyte &H90
I2cwbyte &HA1
I2cwbyte L_on
I2cstop
End Sub Write_th
'--------------
Sub Write_tl
I2cstart
I2cwbyte &H90
I2cwbyte &HA2
I2cwbyte L_off
I2cstop
End Sub Write_tl
'--------------
'read TH
I2cstart
I2cwbyte &H90
I2cwbyte &HA1
I2cstop

I2cstart
I2cwbyte &H91
I2crbyte Th , Nack
I2cstop
'--------------
'read TL
I2cstart
I2cwbyte &H90
I2cwbyte &HA2
I2cstop

I2cstart
I2cwbyte &H91
I2crbyte Tl , Nack
I2cstop
'--------------
'read config
I2cstart
I2cwbyte &H90
I2cwbyte &HAC
I2cstop

I2cstart
I2cwbyte &H91
I2crbyte Confg , Nack
I2cstop
'--------------

'read counter
I2cstart
I2cwbyte &H90
I2cwbyte &HA8
I2cstop

I2cstart
I2cwbyte &H91
I2crbyte Count , Nack
I2cstop

'--------------

'read slope
I2cstart
I2cwbyte &H90
I2cwbyte &HA9
I2cstop

I2cstart
I2cwbyte &H91
I2crbyte Slope , Nack
I2cstop
'--------------

Sub Get_temp:
'start convert
I2cstart
I2cwbyte &H90
I2cwbyte &HEE
I2cstop
'-------------
'read temperature
I2cstart
I2cwbyte &H90
I2cwbyte &HAA
I2cstop

I2cstart
I2cwbyte &H91
I2crbyte Tempmsb , Ack
I2crbyte Templsb , Nack
I2cstop
'read config
I2cstart
I2cwbyte &H90
I2cwbyte &HAC
I2cstop

I2cstart
I2cwbyte &H91
I2crbyte Confg , Nack
I2cstop
End Sub Get_temp
'--------------


Main:

L_on = 25 'if Temp > 25 the load will be switched on
L_off = 20 'if Temp < 20 the load will be switched off
Gosub Write_th
Gosub Write_tl

Loop:

Wait 1

Gosub Get_temp

Select Case Tempmsb

Case Is < 21 : Portb = &B00000001 'if Temp <21 then the yellow LED is on
Case 21 To 25 : Portb = &B00000010 'if Temp is between 21 and 25 then the green LED is on
Case Is > 25 : Portb = &B00000100 'if Temp >25 then the red LED is on


End Select


Goto Loop



Temperature Control using a DS1621 Sensor and a ATtiny 2313 Micrcontroller






Accurate LC Meter Capacitance Inductance Meter with 16F628 and LCD
Volt Ampere Meter with 16F876 Microcontroller and LCD display
 
Accurate LC Meter

Build your own Accurate LC Meter (Capacitance Inductance Meter) and start making your own coils and inductors. This LC Meter allows to measure incredibly small inductances making it perfect tool for making all types of RF coils and inductors. LC Meter can measure inductances starting from 10nH - 1000nH, 1uH - 1000uH, 1mH - 100mH and capacitances from 0.1pF up to 900nF. The circuit includes an auto ranging as well as reset switch and produces very accurate and stable readings.
PIC Volt Ampere Meter

Volt Ampere Meter measures voltage of 0-70V or 0-500V with 100mV resolution and current consumption 0-10A or more with 10mA resolution. The meter is a perfect addition to any power supply, battery chargers and other electronic projects where voltage and current must be monitored. The meter uses PIC16F876A microcontroller with 16x2 backlighted LCD.

50MHz 60MHz Frequency Meter / Counter with 16F628 & LCD
1Hz - 2MHz XR2206 Function Generator
60MHz Frequency Meter / Counter

Frequency Meter / Counter measures frequency from 10Hz to 60MHz with 10Hz resolution. It is a very useful bench test equipment for testing and finding out the frequency of various devices with unknown frequency such as oscillators, radio receivers, transmitters, function generators, crystals, etc.
1Hz - 2MHz XR2206 Function Generator

1Hz - 2MHz XR2206 Function Generator produces high quality sine, square and triangle waveforms of high-stability and accuracy. The output waveforms can be both amplitude and frequency modulated. Output of 1Hz - 2MHz XR2206 Function Generator can be connected directly to 60MHz Counter for setting precise frequency output.

BA1404 HI-FI Stereo FM Transmitter
USB IO Board PIC18F2455 / PIC18F2550
BA1404 HI-FI Stereo FM Transmitter

Be "On Air" with your own radio station! BA1404 HI-FI Stereo FM Transmitter broadcasts high quality stereo signal in 88MHz - 108MHz FM band. It can be connected to any type of stereo audio source such as iPod, Computer, Laptop, CD Player, Walkman, Television, Satellite Receiver, Tape Deck or other stereo system to transmit stereo sound with excellent clarity throughout your home, office, yard or camp ground.
USB IO Board

USB IO Board is a tiny spectacular little development board / parallel port replacement featuring PIC18F2455/PIC18F2550 microcontroller. USB IO Board is compatible with Windows / Mac OSX / Linux computers. When attached to Windows IO board will show up as RS232 COM port. You can control 16 individual microcontroller I/O pins by sending simple serial commands. USB IO Board is self-powered by USB port and can provide up to 500mA for electronic projects. USB IO Board is breadboard compatible.

ESR Meter / Transistor Tester Kit
Audiophile Headphone Amplifier Kit
 
ESR Meter / Capacitance / Inductance / Transistor Tester Kit

ESR Meter kit is an amazing multimeter that measures ESR values, capacitance (100pF - 20,000uF), inductance, resistance (0.1 Ohm - 20 MOhm), tests many different types of transistors such as NPN, PNP, FETs, MOSFETs, Thyristors, SCRs, Triacs and many types of diodes. It also analyzes transistor's characteristics such as voltage and gain. It is an irreplaceable tool for troubleshooting and repairing electronic equipment by determining performance and health of electrolytic capacitors. Unlike other ESR Meters that only measure ESR value this one measures capacitor's ESR value as well as its capacitance all at the same time.
Audiophile Headphone Amplifier Kit

Audiophile headphone amplifier kit includes high quality audio grade components such as Burr Brown OPA2134 opamp, ALPS volume control potentiometer, Ti TLE2426 rail splitter, Ultra-Low ESR 220uF/25V Panasonic FM filtering capacitors, High quality WIMA input and decoupling capacitors and Vishay Dale resistors. 8-DIP machined IC socket allows to swap OPA2134 with many other dual opamp chips such as OPA2132, OPA2227, OPA2228, dual OPA132, OPA627, etc. Headphone amplifier is small enough to fit in Altoids tin box, and thanks to low power consumption may be supplied from a single 9V battery.
 

Arduino Prototype Kit
RF Remote Control 433MHz Four Channel
 
Arduino Prototype Kit

Arduino Prototype is a spectacular development board fully compatible with Arduino Pro. It's breadboard compatible so it can be plugged into a breadboard for quick prototyping, and it has VCC & GND power pins available on both sides of PCB. It's small, power efficient, yet customizable through onboard 2 x 7 perfboard that can be used for connecting various sensors and connectors. Arduino Prototype uses all standard through-hole components for easy construction, two of which are hidden underneath IC socket. Board features 28-PIN DIP IC socket, user replaceable ATmega328 microcontroller flashed with Arduino bootloader, 16MHz crystal resonator and a reset switch. It has 14 digital input/output pins (0-13) of which 6 can be used as PWM outputs and 6 analog inputs (A0-A5). Arduino sketches are uploaded through any USB-Serial adapter connected to 6-PIN ICSP female header. Board is supplied by 2-5V voltage and may be powered by a battery such as Lithium Ion cell, two AA cells, external power supply or USB power adapter.
200m 4-Channel 433MHz Wireless RF Remote Control

Having the ability to control various appliances inside or outside of your house wirelessly is a huge convenience, and can make your life much easier and fun. RF remote control provides long range of up to 200m / 650ft and can find many uses for controlling different devices, and it works even through the walls. You can control lights, fans, AC system, computer, printer, amplifier, robots, garage door, security systems, motor-driven curtains, motorized window blinds, door locks, sprinklers, motorized projection screens and anything else you can think of.
 

Electronics-DIY.com © 2002-2024. All Rights Reserved.