Maker Pro
TinyCircuits

500 Watt LED Lamp Flasher using ATtiny85 - Relay AC Bulb

January 03, 2022 by AFZAL REHMANI
Share
banner

In This Tutorial, We are going to make 500 Watt LED Lamp Flasher using ATtiny85 - Relay AC Bulb

Introduction

When there are such countless circuits that are likewise hard to make, there are additionally a few circuits that are amusing to make. We generally attempt to make various kinds of circuits, in some cases we attempt to carry out little complicated circuits to make them easier for you guys. While some of the time we attempt energetic and fun circuits that can break your boredom. Thus, this article is a mixture of both complication and fun. Because here we are going to control the lamp flasher circuit using the controller. So, in this tutorial, we will make 500W LED Lamp Flasher using Attiny85 - Arduino Compatible.


JLCPCB is the foremost PCB prototype & manufacturing company in china, providing us with the best service we have ever experienced regarding (Quality, Price Service & Time).

Hardware Require

Table 2.JPG

Circuit Diagram

led-lamp-flasher-circuit-attiny85.JPG

Code

// Circuits DIY
// For Complete Details Visit -> https://circuits-diy.com  

void setup() {  // initialize digital pin 13 as an output.
   pinMode(3, OUTPUT);
}

void loop() {
   digitalWrite(3, HIGH); 
   delay(1000); 
   digitalWrite(3, LOW); 
   delay(1000); 
}

Related Content

Comments


You May Also Like