Friday 2 November 2018

555 - How to make a LED flash twice every second?


I know that I can make a LED flash using a 555 timer. How may I make it flash twice every second?


What I am trying to do is to make the LED flashes two times, then wait a second, and then flashes two times again. In pesudo code is something like this:


while (1) {
LED_BLINK_ONCE();
wait(10ms);
LED_BLINK_ONCE();
wait(1000ms);

}


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...