RC5 code analyser

This small adapter allows to experiment with various RC5 infrared adapters. It simply reads IR signals lets say from remote control and gives a code. Holger Klabunde have constructed couple versions of RC5 analysers: One stand alone with alphanumeric LCD second sends code via USART to computer COM port.

RC5_analyser.jpg

 

Circuit uses TSOP1736 IR receiver modules that are optimized for 36kHz carrier signal. RC5 tester also accepts extended codes – up to 128 commands.

Read

PIC12F675 controlled electrical key-lock

For building 12 button key-lock you don’t need microcontroller with many ports. Ivica Novakovic has a nice demonstration on how low pin count microcontroller with ADC can be used to read many keys. Key-lock itself is simple. It controls two relays where electromagnets or motors can be attached.

pic12F675_keylock.jpg

In key-lock circuit there are only one one wire used to read buttons. Of course there are also VCC and GND (power supply) needed. Author also included simple piezo buzzer for sounding keys. Each keypad is positioned between resistor voltage dividers so when one of buttons is pressed, ADC reads a voltage drop. This way each button provides different voltages when pressed. As there is 10 bit ADC used, there can be 1024 different voltages read, but in reality there has to be voltage range left for one button, because voltage may fluctuate. For 12 buttons each button has 85 value range what is enough for reliable operation. With more precise resistors and stabile power supply there can be more buttons interfaces if needed. Project files and firmware are available for download.[via]

Read

AVR Tiny G-force metter

While stumbling around Hackaday projects I found this interesting G-Force measuring project. Project aim was to measure lateral acceleration force of driver in car when turns when he turns right. According to author car can normally handle 0.8g of centrifugal force. Above this value car may slide to the sideways. Well this of course is a matter of tires used and other factors.

g_force.jpg

 

 

Measuring board contains: Atmel ATtiny26 microcontroller; 3×10 LED bars; ADXL103 accelerometer; and other necessary parts needed for correct performance. Program reads accelerometer value via ADC converter and indicates on one of 30 LEDs on the bars. There is simple lookup table implemented which corresponds to 1g(left) on first LED and 1g(right) on LED 30. The middle LED indicates the current G-force. Design can be improved by adding filtering from noise and vibrations.

Read

PIC18F4550 USB prototyping board

PIC18F4550 microcontroller has USB module built in. This allows using USB interface without additional interface chips and drivers. Evan has developed pretty simple PIC18F4550 prototyping board which is capable to download software via USB without need of other external programmer adapter.

PIC_development_board.jpg

 

Board can easily be adapted for various PIC USB interfacing projects such as HID or virtual COM port applications. PIC board is quite compact, but it has all pins available for interfacing. You may also want to grab a PIC USB Bootloader in order to test USB run.[via]

Read

Stepper motor controller on PIC

Stepper motors seems to be always interesting topic. And there is a lot of information about controlling them around the internet. Albert La also has been playing with steppers using PIC microcontroller.

He constructed simple circuit with PIC16F84 microcontroller, TIP120 Darlington transistor pairs, and 4050 buffer IC for circuit protection. Wrote simple program which is able to run stepper motor with 7.5 degrees per step. This circuit can serve as stepper motor tester for instance picking right wiring, measuring revolution speed and so on. [via]

Read

Next Page »