This was designed to flash a pair of LEDs to be mounted on the wing tips of a Parkzone Citabria R/C (remote control) airplane. The unmodified Parkzone Citabria only weighs 20 grams (about 0.7 oz), so weight, and therefore the number and size of the electrical components for the flasher are critical. Another major constraint was the range of power supply voltage and current draw. The battery in the Parkzone Citabria varies from 3.7 to 4.2 volts, which rules out circuits such as the Simplest LED Flasher Circuit, which requires a higher voltage. Current draw also needs to be kept low because the battery is tiny. The CMOS AVR controller handles both of these requirements beautifully.
I used the AVR ATTINY12 controller from Atmel because I have plenty left over from other projects. With some modification to the code, you can use the ATTINY13, which is also available in both 8 pin DIP and surface mount packages, or nearly any AVR or other small CMOS controller. See firmware discussion below.
Here is the pin assignment for the ATTINY12 and ATTINY13.
Pin 1 Battery +
Pin 2 PORTB3 4 Hz, 50 ms positive pulse
Pin 3 PORTB4 10 Hz 50 ms positive pulse (square wave)
Pin 4 Battery -
Pin 5 PORTB0 4 Hz 100 ms positive pulse
Pin 6 PORTB1 2 Hz 50 ms positive pulse
Pin 7 PORTB2 4 Hz 100 ms positive pulse
Pin 8 Battery +
The "heartbeat" of the firmware is a subroutine named wait_50ms which sets up the 8-bit timer to interrupt the processor, and then puts the processor to sleep. After 50 milliseconds, the processor is awakened by the timer interrupt, the interrupt is cleared, and the subroutine returns to the instruction in the main routine after the instruction that called wait_50ms.
The main routine merely sets or clears bits on the output pins and then waits for 50 milliseconds, and sets and clears pins as appropriate to reproduce the intended waveforms on the output pins. Since there is only one timing routine, all changes on the output pins take place according to the 50-millisecond granularity of this timing method. It should be noted that because there are varying numbers of instructions between calls to wait_50ms, the timing between changes in the output pins varies throughout the entire 1-second cycle by a few microseconds. This tiny variation in timing is not visible. Using this method to control the timing of the drive pulses brings a new meaning to the term "flash memory".
You may notice that pin 5 has the same pattern as pin 7. Each pin drives a 50-millisecond pulse at 4 Hz. The pulses from the two pins are synchronized and in phase. On an ATTINY12, each pin can supply up to 40 milliamps, for a total of 80 milliamps to drive the LEDs.
The internal clock for the ATTINY12 is 1.2 MHz while the internal clock for the ATTINY13 can be either 4.8 MHz or 9.6 MHz. If you use the ATTINY13, you will have to either accept that the flashes will be at a higher frequency and a shorter duration, or modify the code to take into account that higher clock speed. It may also be necessary to modify the setup of the timer in the ATTINY13.
The circuit utilizes a compact design to minimize weight while ensuring efficient operation within the specified voltage range. The ATTINY12 or ATTINY13 microcontrollers serve as the central processing unit, executing the programmed firmware that controls the LED flashing sequences. The power supply is connected to pins 1 and 8, providing the necessary voltage to the microcontroller and the LEDs.
Output pins (PORTB0, PORTB1, PORTB2, PORTB3, and PORTB4) are configured to generate specific pulse widths and frequencies, allowing for the desired LED flashing patterns. The use of a timer interrupt allows for accurate timing control, ensuring that the LED flashes occur at the intended intervals without excessive power consumption.
The design must consider the maximum current output of the microcontroller pins while ensuring that the total current draw remains within the limits of the battery capacity. The firmware's efficiency is crucial in maintaining low power consumption, particularly given the limited battery resources available in the Parkzone Citabria. The synchronization of the output pins enhances the visual effect of the flashing LEDs, providing clear visibility during flight.
Overall, this LED flasher circuit effectively meets the design constraints of weight, power consumption, and voltage requirements while delivering a functional and visually appealing solution for R/C airplane enthusiasts.This was designed to flash a pair of LEDs to be mounted on the wing tips of a Parkzone Citabria R/C (remote control) airplane. The unmodified Parkzone Citabria only weights 20 grams (about 0.7 oz), so weight, and therefore the number and size of the electrical components for the flasher are critical.
Another major constraint was the range of power supply voltage and current draw. The battery in the Parkzone Citabria varies from 3.7 to 4.2 volts. which rules out circuits such as the Simplest LED Flasher Circuit, which requires a higher voltage. Current draw also needs to be kept low because the battery is tiny. The CMOS AVR controller handles both of these requirements beautifully. I used the AVR ATTINY12 controller from Atmel because I have plenty left over from other projects. With some modification to the code, you can use the ATTINY13, which is also available in both 8 pin DIP and surface mount packages, or nearly any AVR or other small CMOS controller. See firmware discussion below. Here is the pin assignment for the ATTINY12 and ATTINY13. Pin 1 Battery +
Pin 2 PORTB3 4 Hz, 50 ms positive pulse
Pin 3 PORTB4 10 Hz 50 ms positive pulse (square wave)
Pin 4 Battery -
Pin 5 PORTB0 4 Hz 100 ms positive pulse
Pin 6 PORTB1 2 Hz 50 ms positive pulse
Pin 7 PORTB2 4 Hz 100 ms positive pulse
Pin 8 Battery +
The "heartbeat" of the firmware is a subroutine routine named wait_50ms sets up the 8 bit timer to interrupt the processor, and then puts the processor to sleep.
After 50 milliseconds, the processor is awakened by the timer interrupt, the interrupt is cleared, and subroutine returns to the instruction in the main routine after the instruction that called wait_50ms . The main routine merely sets or clears bits on the output pins and then waits for 50 milliseconds, and sets and clears pins as appropriate to reproduce the intended wave forms on the output pins.
Since there is only one timing routine, all changes on the output pins take place according to the 50 millisecond granularity of this timing method. It should be noted that because there are varying numbers of instructions between calls to wait_50ms, the timing between changes in the output pins varies throughout the entire 1 second cycle by a few microseconds.
This tiny variation in timing is not visible. Using this method to control the timing of the drive pulses brings a new meaning to the term "flash memory". You may notice that pin 5 has the same pattern as pin 7. Each pin drives a 50 millisecond pulse at 4 Hz. The pulses from the two pins are synchronized and in phase. On an ATTINY12, each pin can supply up to 40 milliamps, for a total of 80 milliamps to drive the LEDs.
The internal clock for the ATTINY12 is 1.2 MHz while the internal clock for the ATINY13 can be either 4.8 MHz or 9.6 MHz. If you use the ATTINY13, you will have to either accept that that the flashes will be at a higher frequency and a shorter duration, or modify the code to take into account that higher clock speed into account.
It may also be necessary to modify the setup of the timer in the ATTINY13. 🔗 External reference
Purchase a 1W white LED and utilize a mobile phone battery to create a small lamp. A lampshade can be made from a glass-like milky white plastic bottle. The LED emits light through a radiating plate, which has two...
This system uses a transmitter operating at approximately 100 kHz to control a remote receiver. A line splitter can connect the transmitter to the active telephone line. The transmitter is a CMOS oscillator equipped with output buffer stages to...
Application of the High Power LED Driver SP7652 with an Analog 0V-to-10V dimmer. Electrical Requirements: Input Voltage of 5.5V to 28V, Output Voltage VF of LED, Output Current ranging from 0 to 6A. This circuit is designed to provide...
This circuit is designed as a simple LED bar graph voltmeter. Each operational amplifier in the LM339 quad package functions as a comparator, comparing the input voltage (Vin) to a series of fixed voltage levels that are proportional to...
This circuit flashes an LED to indicate that a phone rang during the user's absence. A differential amplifier with hysteresis (Q1, Q2, and Q3) detects high line voltage (ringing), which activates Q4, a multivibrator composed of Q5 and Q6,...
IC4, C1, R1 and R2 are used for the clock pulse which is fed to both the counters IC2 and IC3 Pin 14. IC1 is a Flip Flop and is used as a switch to enable either IC2 or...
Warning: include(partials/cookie-banner.php): Failed to open stream: Permission denied in /var/www/html/nextgr/view-circuit.php on line 713
Warning: include(): Failed opening 'partials/cookie-banner.php' for inclusion (include_path='.:/usr/share/php') in /var/www/html/nextgr/view-circuit.php on line 713