TKinter: Entry Widget Tutorial
3:54
4 жыл бұрын
Learn Arduino: LCD Tutorial
6:54
4 жыл бұрын
Arduino Potentiometer Tutorial
3:05
4 жыл бұрын
Arduino Project: ASCII Converter
9:40
Python: TKinter Class Based Windows
7:41
Пікірлер
@MiguelisNoisy
@MiguelisNoisy 14 күн бұрын
The URL in the description have expired. Can you update with direct links?
@chadlunders4898
@chadlunders4898 Ай бұрын
Are there other addressable devices other than LEDs. I am looking for something to address switches for piano keys.
@techandgaming4376
@techandgaming4376 3 ай бұрын
3:25 / 7:36 AT THIS MOVMENT ONLY 3 LEDS ARE GLOWING,SO CAN YOU TELL ME HOW TO GLOW MORE LEDS? IS IT BY ADDING MORE FOR (int i=0; i<NUM_LEDS; I++) { leads[I] = CRGB(0, 255 - 20*i, 20i ); FastLED.setbrightness(6*i); FastLED.show(); delay(50); OR EDITING #define NUM_LEDS 60 TO #define NUM_LEDS AND NUMBER OF LEDS WE WANT TO GLOW
@Triggeredgaming27
@Triggeredgaming27 3 ай бұрын
3:25 / 7:36 AT THIS MOVMENT ONLY 3 LEDS ARE GLOWING,SO CAN YOU TELL ME HOW TO GLOW MORE LEDS? IS IT BY ADDING MORE FOR (int i=0; i<NUM_LEDS; I++) { leads[I] = CRGB(0, 255 - 20*i, 20i ); FastLED.setbrightness(6*i); FastLED.show(); delay(50); OR EDITING #define NUM_LEDS 60 TO #define NUM_LEDS AND NUMBER OF LEDS WE WANT TO GLOW
@headshotzwillhappen
@headshotzwillhappen 4 ай бұрын
Ok so can i run 2 led strips of say 12 leds off one board by entering line 4 and 5 as 4- #define LED_PIN 3 AND 5- #define NUM_LEDS 12? Im trying to build a controller for light strips that are making diy wheel lights on my car :)
@vg_coder
@vg_coder 4 ай бұрын
Very Helpful! Nice quick to-the-point video.
@Roberta_Toaldo
@Roberta_Toaldo 4 ай бұрын
Thank you for this amazing explanation!
@zacharywho5442
@zacharywho5442 4 ай бұрын
Any idea on how close those numbers can be, I.E. how many selections there could be while remaining reliable?
@d10denis26
@d10denis26 6 ай бұрын
Could you please upload a tutorial with the code I have to do a project for school and I would like to do that but I don’t know how to do the code
@asphaltlegends3740
@asphaltlegends3740 6 ай бұрын
thank you so much
@sandrocavali9810
@sandrocavali9810 6 ай бұрын
thanks mate, I´ve had this arduino in its box since the pandemicum and now it will be turned into a VU meter for the studio
@bazrazin1
@bazrazin1 7 ай бұрын
i learnt some programming today, also where is the addressing done how does next led light up from the previous one or any from the strip.
@G.dhinakaranvideos
@G.dhinakaranvideos 7 ай бұрын
device link description pin panga comment pin panga
@GrooveYouVerse
@GrooveYouVerse 8 ай бұрын
Great video. My question is how I would make a final/completed device? I want to make a gift for someone, and I want it to be where they plug the usb for power and it does its thing. But the device won’t have a breadboard. Like how do I minimize into a smaller package? I hope I’m asking the right question(s).
@amolchopade7649
@amolchopade7649 8 ай бұрын
Can I use esp2022 instead of Arduino?
@stonedcodingtom9097
@stonedcodingtom9097 8 ай бұрын
Amazing project and video, thanks. Can i connect led strip directly to the ESP? How WLED program works that it can power leds with no additional power source? No breadboard and no transistors in scheme?
@antonioinserni258
@antonioinserni258 9 ай бұрын
BTW -never mind. I got this far (see below). Thanks again, this was a great video! #include <FastLED.h> #define LED_PIN 2 #define NUM_LEDS 60 int iR = 7; int iG = 155; int iB = 9; int iDelay = 50; boolean lDelta = true; CRGB leds[NUM_LEDS]; void setup() { // put your setup code here, to run once: FastLED.addLeds<WS2812, LED_PIN, GRB>(leds, NUM_LEDS); FastLED.setMaxPowerInVoltsAndMilliamps(5,350); FastLED.clear(); FastLED.show(); Serial.begin(9600); //open serial port } void loop() { // put your main code here, to run repeatedly: for (int i=0; i<NUM_LEDS; i++){ leds[i] = CRGB(iR,iG,iB); FastLED.setBrightness(15); FastLED.show(); delay(iDelay); } if (lDelta == true) { iR = 7; iG = 155; iB = 9; lDelta = false; Serial.println("lDelta was true, now it is "); Serial.print(lDelta); } else {iR = 155; iG = 7; iB = 9; lDelta = true; Serial.println("lDelta was false, now it is "); Serial.print(lDelta); } }
@antonioinserni258
@antonioinserni258 9 ай бұрын
Greetings! I do have a question: In my case (and it looks to be this way in the video) at the start of the Void Loop, the lights blink off before continuing. Is there a way to have them never go out? Thanks!
@antonioinserni258
@antonioinserni258 9 ай бұрын
Aside from the array numbering (yet, 0 to 59), this is a great video! Thank you for posting!
@peterhenson823
@peterhenson823 9 ай бұрын
What about a .cpp file? I thought you needed one if you create a custom .h file
@user-id1ug8ru8k
@user-id1ug8ru8k 9 ай бұрын
Could you run 5 lights from one arduino? I have a work project that requires something like this.
@Kludgeware
@Kludgeware 9 ай бұрын
The Arduino's built in power supply should be able to handle 5 LEDs
@timmark4190
@timmark4190 11 ай бұрын
How did you come with the resistance and capacitance values
@pizzapr9287
@pizzapr9287 11 ай бұрын
will this work with cooler master sickleflow 120?
@vladbondar6363
@vladbondar6363 11 ай бұрын
Using the global attribute inside the function would make it work just fine, increasing n variable and so on. Why would you put global in global scope? Never seen that
@janindutheshan9827
@janindutheshan9827 Жыл бұрын
can i use 12v strip in this manner
@bmustore3027
@bmustore3027 11 ай бұрын
U have to using stepdown
@comment8767
@comment8767 Жыл бұрын
Also needed would be automatic update when selection in list box is made.
@arekuti
@arekuti Жыл бұрын
Thanks alot that file.close() solved my race condition issue while writing and reading in other .py file
@wowLinh
@wowLinh Жыл бұрын
I would move de FastLED.show() outside of the for loops.
@peterlee706
@peterlee706 Жыл бұрын
Do we need a capacitor and a resistor ?? Is it must-need parts?
@Kludgeware
@Kludgeware Жыл бұрын
The capacitor is just a bypass capacitor to the power supply. It isn't required, but it is good practice to use one on your power rail to smooth out any "ripples" in the rails
@jhyland87
@jhyland87 Жыл бұрын
Saved me a lot of $. Turns out rotary selectors that are small cost like $15-40 each. But using a minature trimpot and this will work just as well. Thanks for uploading
@aezir8753
@aezir8753 Жыл бұрын
May I ask if is it ok if I don't use a external power supply? my led strip is a 1m 60 led 5v (each led takes up about 0.3 watts). And I'm also using a Arduino pro micro
@Kludgeware
@Kludgeware Жыл бұрын
Check the datasheet of your Arduino and see the maximum current output available for the power rails. If all LEDs full brightness will overdraw the power output, you can't use the onboard power supply, unless you can limit the current output in software. If you do use an external power supply, make sure the data line and power supply to the LEDs share a common ground.
@deannamatthews1300
@deannamatthews1300 Жыл бұрын
Hello! I am looking to learn how to connect an LED light strip to an arcade button so that when the arcade button is pressed, the LED light strip turns on or flashes a specific colour. I have looked online and it appears that an ardunio is helpful in doing this, but I am not sure how to make the connection, or what kind of hardware is needed. This is my first lighting project so any help is appreciated!
@nurfathiah3105
@nurfathiah3105 Жыл бұрын
what is the function of "pass" in the class window?
@Kludgeware
@Kludgeware Жыл бұрын
It's simply used as a placeholder/indentation forcer. Pass does nothing here, it just gives a clear notation of where the class definition ended instead of only relying on indentation.
@makeitathome1327
@makeitathome1327 Жыл бұрын
Nice video! I'm actually trying to build an arduino project that can control an individually addreseble led strip that has 24 leds using an ir remote. I've got the code and components ready, but I'm worried about the current being an issue. Do you know how much power would approximately be needed, and if so, what gauge/ AWG wire would I need to handle that much current. Also, do you know how to connect a separate power supply to the circuit because I don't think the arduino can handle plugging a power supply into the Power Jack connector.
@mirda-elektro
@mirda-elektro Жыл бұрын
Perfect video. Thanks. 👍👍👍👍
@Jarcik01
@Jarcik01 Жыл бұрын
This was soooo helpful! Thank you very much 💜
@mritorto1
@mritorto1 Жыл бұрын
how do you this with out pack and use grid fro the labels and entries
@justinmorgan7398
@justinmorgan7398 Жыл бұрын
I am trying to figure out to write the for loop so that there is a group of 4-5 LEDs moving down the strip, there is a delay, and then another group of 5 LEDs that start down the line. Any idea where I can find an example of how to write this to achieve the desired effect?
@kychemclass5850
@kychemclass5850 Жыл бұрын
Tq for sharing. Suggestion: Extend the idea to animating the plot with a time base.
@maxy9095
@maxy9095 Жыл бұрын
Sir how to add data's in treeview ,listbox,textbox using xlrd and xlwt and openpyxl.please teach me sir
@Smucklz
@Smucklz Жыл бұрын
can you hook up 2 led strips by just wiring the second one the same way as the first one using the same pin on the arduino? I am making a lightsaber with them, and I want 2 strips so I can stick them back to back and make a more evenly lit blade
@Kludgeware
@Kludgeware Жыл бұрын
I don't see why that wouldn't work, the current limiting resistor should help prevent a current overdraw on the data line (which isn't that high in the first place). However, in this approach, you likely could not use the Arduino as a power supply and you would have to find a way to externally power the LEDs. Using the Arduino power supply, the max amount of LEDs you can power is 9.
@davidzwitser
@davidzwitser Жыл бұрын
This is exactly what I needed! Button tutorials seemed all over the place and they didn't get to the base of why and what. This is amazing. The only thing I missed is understanding what the digital in pin does to determine if the signal is high or low. Is it if the signal is between a certain range
@gangadharansreekumar936
@gangadharansreekumar936 Жыл бұрын
How to operate this with a switch
@mouradmarzouk8229
@mouradmarzouk8229 Жыл бұрын
how do you do it with r+?
@zwabbah4841
@zwabbah4841 Жыл бұрын
.
@PaulWilfong
@PaulWilfong Жыл бұрын
Like many have said, Great Vid. I would like to know the purpose of the resistor and capacitor, and how you chose their specs. I will look for the "slower version" vid you promised Ms. Farmer a couple of years ago.
@Kludgeware
@Kludgeware Жыл бұрын
The capacitor acts as a decoupling capacitor for the power supply. If there are momentary dips in voltage across the power rails, the capacitor in parallel with +5V and GND will momentarily prevent these periodic voltage drops. The resistor is just a current limiting resistor into the LEDs.
@manueljaen3211
@manueljaen3211 Жыл бұрын
Thanks @Klungeware I just started learning Python, and I wanted to build a note taking app!
@franciscojavierpastranadel9669
@franciscojavierpastranadel9669 Жыл бұрын
Thanks a lot for this so simple an clear lesson on how to overwrite, append and even crate a .txt file with Python!. This is just what I was looking for :)
@FBDev64
@FBDev64 Жыл бұрын
for the file not found, it says unresolved reference and I can't save or open file
@anyonecanmakeit718
@anyonecanmakeit718 Жыл бұрын
Where are more videos!!!??
@Kludgeware
@Kludgeware Жыл бұрын
Stay tuned, more is on the way! Currently undergoing a slight rebranding effort. Moved houses as well and I've been delayed in setting up the studio. More to come!
@anyonecanmakeit718
@anyonecanmakeit718 Жыл бұрын
@@Kludgeware eagerly waiting Hope i will learn something new!!