No video

Blinking Led Patterns in Arduino (TAGALOG)

  Рет қаралды 16,739

Sir Ben & Mam Rhea

Sir Ben & Mam Rhea

Күн бұрын

#ArduinoProgramming
Learn different kinds of led patterns in Arduino.
Please Like Share and Subscribe to our channel,
Thank you guys! :)
Web Raccoon Clothing Page:
/ webraccoonclothing
Github Repo:
github.com/ben...
TRACKS:
Alone, Two Days Ago by Artificial.Music / artificial-music
Creative Commons - Attribution 3.0 Unported- CC BY 3.0
Free Download / Stream: bit.ly/alone-t...
Music promoted by Audio Library • Alone, Two Days Ago - ...

Пікірлер: 51
@riankristoffer7466
@riankristoffer7466 Жыл бұрын
THANK YOU PO SIR SUPER HELPFUL PO NG GANTONG VIDEO LALO NA STUDYANTE NA GAYA KO
@josephcampugan2439
@josephcampugan2439 3 жыл бұрын
Currently studying Programming and Interfacing with absolutely little to no guidance from my instructor. This video is a lifesaver. Thank you sir, and more videos to come!
@abigailcastro4358
@abigailcastro4358 2 жыл бұрын
Hello Sir! Napakalaking tulong po nito saamin today. Thank you so much!
@roboratztv5468
@roboratztv5468 3 жыл бұрын
Maraming salamat sa nag support sa educational yt channel ko po. Willing po ako makinig sa mga comment nyo para sa ika gaganda ng channel ko po. Salamat din po sa 359 na taong nag bigay ng kaunting oras para dumalaw sa channel ko.
@charxcx_Purr
@charxcx_Purr 3 жыл бұрын
Thank you sir!❣️ I need refresher since nalimutan ko na yung basics ng Arduino 😐
@pi.neapple8701
@pi.neapple8701 2 жыл бұрын
thank you very much po. ang easy po nito sundan at napakadali maintindihan
@motomat360
@motomat360 4 жыл бұрын
Namiss ko to sir yung Arduino hahah
@SirBenMamRhea
@SirBenMamRhea 4 жыл бұрын
hahaha 😂😂
@aldrich8140
@aldrich8140 4 жыл бұрын
Thanks for the helpful tutorial sir! If you don't mind, can I ask a question? As a curious student, how can I become knowledgeable on Arduino? I already purchased a complete kit online and I'm completely lost on where I should start. Where should I begin? Is there an outline that I can follow? Do note that I don't have any knowledge right now about Arduino programming. Your advices and insights will be appreciated! Thank you po!
@SirBenMamRhea
@SirBenMamRhea 4 жыл бұрын
in terms of programming naman, familiarize yourself sa c, c++ and java kasi ung mga syntax and reserve words dun is same lang naman. Itong tutorial na ginawa ko is magandang practice for you kasi eto ung mga basics e. i think kung bumili ka ng kit dapat binigyan ka ng pdf and zip files ng mga libraries ng sensors na kasama sa kit, meron din kasi ako ng gnun tpos may kasamang mga files and ebook na guide mo sa kit. :)
@aldrich8140
@aldrich8140 4 жыл бұрын
@@SirBenMamRhea Thank you po!!!
@JOSEPHCATUBIG26
@JOSEPHCATUBIG26 3 ай бұрын
salamat po Sir
@lovingsjy_7934
@lovingsjy_7934 2 жыл бұрын
Sir Thank you so much for this helpful video. Gusto ko lang po mag tanong or request, I really need to know po paanonaman po if isa isa muna sya mag bblink? For example yung green po muna then after that the yellow one then the red one naman po? Thank you very much I will appreciate it so much po!!
@DodongWerkzPh
@DodongWerkzPh 2 жыл бұрын
// constants won't change. They're used here to set pin numbers: const int buttonPin = 4; // the number of the pushbutton pin const int ledPin = 13; // the number of the LED pin const int ledPin1 = 12; const int ledPin2 = 11; // variables will change: int initial = 0; //hold current initial int oldstate = 0; //hold last initial int buttonstate = 0; // variable for reading the pushbutton status void setup() { pinMode(ledPin, OUTPUT); // initialize the LED pin as an output: pinMode(ledPin1, OUTPUT); pinMode(ledPin2, OUTPUT); pinMode(buttonPin, INPUT); // initialize the pushbutton pin as an input: } void loop(){ //debouncing routline to read button buttonstate = digitalRead(buttonPin); //state the initial of button if(buttonstate == HIGH){ //check if it has been pressed delay(50); buttonstate = digitalRead(buttonPin);//state button again if(buttonstate == LOW){ //if it is 0 considered one press initial = oldstate + 1; //increase initial by 1 } }else{ //check if it has been NOT pressed delay(100); } switch (initial){ //react to button press a initial case 1: //if initial is 1 digitalWrite(ledPin, HIGH);//on digitalWrite(ledPin1, LOW);//off digitalWrite(ledPin2, LOW);//off oldstate = initial; //set oldstate initial as current initial break; case 2: digitalWrite(ledPin, LOW); digitalWrite(ledPin1, HIGH); digitalWrite(ledPin2, LOW); oldstate = initial; break; case 3: digitalWrite(ledPin, LOW); digitalWrite(ledPin1, LOW); digitalWrite(ledPin2, HIGH); oldstate = initial; break; default: //if initial is not 1 2 3 digitalWrite(ledPin, LOW); //off digitalWrite(ledPin1, LOW); digitalWrite(ledPin2, LOW); oldstate = 0; //reset to all off/initial 0 break; } }
@micosanpablo5391
@micosanpablo5391 3 жыл бұрын
Great help maraming salamat po
@marlroseguerrero739
@marlroseguerrero739 2 жыл бұрын
THANKYOU!!
@im-a-tamago8527
@im-a-tamago8527 3 жыл бұрын
Thank you sir, more videos to come
@aldrinmanapat8221
@aldrinmanapat8221 2 жыл бұрын
Hello po, sana masagot po itong tanong ko, salamat po. -modify traffic light to have an advanced green (blinking green LED) for 3 seconds before illuminating it for 5 seconds.
@vhickytuazon
@vhickytuazon 4 жыл бұрын
💖💖tara lets start💖💖
@SirBenMamRhea
@SirBenMamRhea 4 жыл бұрын
grabe supportive 😂
@marvinpena1066
@marvinpena1066 4 жыл бұрын
Master❤
@SirBenMamRhea
@SirBenMamRhea 4 жыл бұрын
salamat sa support 😁
@joellaurente6426
@joellaurente6426 3 жыл бұрын
Big help sir! Thank you po ^_^
@russelguardian8616
@russelguardian8616 Жыл бұрын
GAWA PA PO KAYO TUTORIAL FOR SEVEN SEGMENT DISPLAY PLSSSS
@michaeldeguzman5571
@michaeldeguzman5571 4 жыл бұрын
Sir, ginawa mo bang positive ung dun sa part na maraming butas ung maraming wirr na sinaksak ,
@michaeldeloso9042
@michaeldeloso9042 5 ай бұрын
Good day Sir 👋 How may I set my 4 pcs of 4 pin rgb led module to my 4 pcs of speakers separately 1st 4pin rgb led module to 1st speaker, 2nd 4pin rgb led module to 2nd speaker, 3rd 4pin rgb led module to 3rd speaker and 4th 4pin rgb led module to 4th speaker with super slow changing colors such as 10 seconds delay transition colors of fading rgb and switch automatically to music reactive mode when there is playing music or songs on my videoke and turn back automatically to super slow changing colors of red green blue when there's no music playing or in standby mode? 4 pcs of 4 pin rgb led module to my 4 pcs of speakers separately: 1st 4pin rgb led module to 1st speaker, 2nd 4pin rgb led module to 2nd speaker, 3rd 4pin rgb led module to 3rd speaker and 4th 4pin rgb led module to 4th speaker
@yvessabben7110
@yvessabben7110 4 жыл бұрын
Salamat po sir more videos po
@jeremytiempo9639
@jeremytiempo9639 2 жыл бұрын
Sir ask ko po kung pde ba or ok ba c 5v power supply sa vin pin ng Arduino uno??
@braveheart92585
@braveheart92585 3 жыл бұрын
Hi sir what if gamitin ko to sa isang code.. Gamitin as a standby indicator. Pano po ito i. Insert sa sketch para mag loloop sya sariling code habang nakaon ang micro controller ay nag indicate sya na nag blink.. Paano po ba mag seself loop sya pag i. Insert sa working sketch ko.. Thanx
@mow5566
@mow5566 4 жыл бұрын
"TARA LET'S START" HAHAHAHAHAHAHAHHAHA
@SirBenMamRhea
@SirBenMamRhea 4 жыл бұрын
hhaahhahahaa salamat sa support :)
@marlroseguerrero739
@marlroseguerrero739 2 жыл бұрын
BOSS paano pag ang pattern is (2nd led and 1st simultaneous)then 1st and (3rd led and 4th )simultaneous then 5th and back to start nanaman
@rhenachavez1631
@rhenachavez1631 2 жыл бұрын
Can you make a tutorial on how to connect the arduino in program, it is really hard for me
@kinda5515
@kinda5515 4 жыл бұрын
hello sir! gumawa ako ng IoT project using node mcu and dht 22 with blynk app gusto ko sana sya na iconnect sa website. pwede po pa advice
@SirBenMamRhea
@SirBenMamRhea 4 жыл бұрын
hi sir, pwde kayo gumamit ng firebase database for storing ng data. nay library sya for arduino. tpos connect mo si firebase kay website mo using php.
@kinda5515
@kinda5515 4 жыл бұрын
@@SirBenMamRhea maraming salamat po !
@endone3661
@endone3661 4 жыл бұрын
angas haha
@SirBenMamRhea
@SirBenMamRhea 4 жыл бұрын
salamat sa support :)
@karljosefmariano9167
@karljosefmariano9167 2 жыл бұрын
may i know po kung ano po placement nung wires sa arduino?
@leizelsardan1680
@leizelsardan1680 2 жыл бұрын
sir using arduino and led strip fire works display gawa po kayo video first to last step by step thank u sir
@Tulfonatic-sarcasticsm
@Tulfonatic-sarcasticsm 4 жыл бұрын
number 787 subscriber sir
@SirBenMamRhea
@SirBenMamRhea 4 жыл бұрын
salamat sa suporta sir makakaasa po kayo sa mas madaming tutorial na pwde makatulong sainyo :)
@Tulfonatic-sarcasticsm
@Tulfonatic-sarcasticsm 4 жыл бұрын
@@SirBenMamRhea welcome sir newbie pa po sir.....
@relaymatik5984
@relaymatik5984 4 жыл бұрын
Gusto ko talaga matutu ng arduino 😔
@SirBenMamRhea
@SirBenMamRhea 4 жыл бұрын
pwedeng pwde nyo to maging guide sir kasi ito pong tutorial ung foundation and basics ng arduino :)
@relaymatik5984
@relaymatik5984 4 жыл бұрын
Ita try ko sir, meron kasi akong ginawang project automatic lights on&off using pir sensor nilagay ko sa cr namin na kapag pumasok ka automatic bubukas yung ilaw then pag labas mo naman ng cr automatic din mamatay yung ilaw success naman pag kagawa ko, pero gusto ko dagdagan ng features gusto ko i link yung mp3 gusto ko pag pasok ko automatic bubukas ang ilaw then may voice sound using mp3 na "WELCOME" at pag labas mo naman ng cr syempre mamatay yung ilaw then may voice sound din using mp3 na "THANK YOU COME AGAIN" 😊 ang cool diba may idea nako kung pano gagana ang mp3 at sasabay sa motion sensor kaso diko kaya ng full electronics tatlong relay kasi ang gagana para sa PLAY, PAUSE, at NEXT, yan yung sa mp3 kailangan ko talaga ng arduino para sa mga time delay ng mga buttons ng mp3 😔 kaso diko magawa kasi di ako knowlegable sa arduino well nasabi ko lang yung idea ko ang cool kasi para sakin 🤟
@SirBenMamRhea
@SirBenMamRhea 4 жыл бұрын
magandang idea yan sir. semi home automation yan hehe. goodluck sa project mo sir. hope ma vlog mo din para mashare sa iba haha. stay safe po. 😁
@renegeorgerawat5000
@renegeorgerawat5000 2 жыл бұрын
Sir Ben Can you make a Tutorial For Other Arduino Code ( FOR ) PLEASE SANA MA NOTIFIED PO
@markdarrenutalla9770
@markdarrenutalla9770 2 жыл бұрын
sir pwede poba paturo
@jogishjaderuiz303
@jogishjaderuiz303 3 жыл бұрын
where is da code
LED Patterns with Arduino 12 LEDs and 12 Patterns
6:52
Creative Stuff
Рет қаралды 78 М.
Python MySQL Tutorial Tagalog (Database Connection and Insert Function)
15:57
Before VS during the CONCERT 🔥 "Aliby" | Andra Gogan
00:13
Andra Gogan
Рет қаралды 10 МЛН
а ты любишь париться?
00:41
KATYA KLON LIFE
Рет қаралды 3,6 МЛН
What will he say ? 😱 #smarthome #cleaning #homecleaning #gadgets
01:00
Intro to the Switch Case Statement in Arduino
7:03
Circuit Crush
Рет қаралды 1 М.
CSS Selectors and Position Properties (TAGALOG)
13:32
Sir Ben & Mam Rhea
Рет қаралды 3,6 М.
How Do Computers Remember?
19:32
Sebastian Lague
Рет қаралды 6 МЛН
Arduino push button led | arduino button led projects
5:53
Mr ElectroUino
Рет қаралды 46 М.
PUSHBUTTON + LED LIGHT USING TINKERCAD (TAGALOG VERSION)
8:32
Sirf Franco
Рет қаралды 5 М.
Arduino LED Projects | LED Chaser with 7 Cool Effects for Beginners
7:58
Before VS during the CONCERT 🔥 "Aliby" | Andra Gogan
00:13
Andra Gogan
Рет қаралды 10 МЛН