Now, I am following the Arduino R3 tutorials, but I came here to tell you that you are the best teacher I have ever seen
@paulmcwhorter8 ай бұрын
Wow, thanks!
@larryplatzek90178 ай бұрын
Most programs need to use if statements and conditionals, so this is another important lesson!
@mohammedsadiq20458 ай бұрын
3 words: Amazing Amazing Amazing I Really learned from you Mr. Paul, and I would love if you made serial videos about ESP32 using MicroPython or arduino, or both Thank you
@louistoweill42328 ай бұрын
Good morning from Washington state. Thanks for the lessons!
@woowocgwhwrehvcb6 ай бұрын
Great Lesson. I aced the homework.
@TheUnofficialMaker8 ай бұрын
2 tips: 1. clear monitor window before each run. 2. include a print to show what number you entered, hard to see on the line where you enter the value and goes by quick. Nice work.
@3107658 ай бұрын
Brilliant Paul, thank you so much 😊 👍🏼
@anitamlv8 ай бұрын
Hi Mr McWhorter, Do you can help me with a Bluetooth Module HC05, to set Role Master? I cannot change the role, please help me
@jamesjones-gk2gpАй бұрын
You might want to indent - Conditional statements, while, for statements to give your code some formating. You will find it easier to read
@EI.018 ай бұрын
Sir when will you have to make videos on how to use the esp32
@electronichome11538 ай бұрын
I've used if else during this tutorial, instead several if conditions
@scottwait35858 ай бұрын
Thank you Paul
@ex1stenz8 ай бұрын
i lost the meaning of "Serial.parse", what is "Parse" standing for?
@robertschuldenfrei24028 ай бұрын
Parse means to split apart. You could split out an integer from a string by writing a program to look at the string character by character. You would be looking at each character to see if it was a number. You would have to be mindful of the minus sign. Years ago, 1968 to be exact, I did just that with the original Dartmouth BASIC.
@ex1stenz8 ай бұрын
@@robertschuldenfrei2402 oh ok got it! Many thanks! :)
@electronichome11538 ай бұрын
For typing OR in Windows - type twice Alt+124
@jeff_wild8 ай бұрын
My lesson 16 homework assignment: kzbin.info/www/bejne/pIrOd2N_grOErac
@paulmcwhorter8 ай бұрын
LEGEND!
@chrisallen28944 ай бұрын
👍
@patrickfox-roberts75288 ай бұрын
👍👍
@richardsstark98258 ай бұрын
My Homework kzbin.info/www/bejne/a2PVoJeApM5qm6Msi=f_djVs8j0s2FAlNb I tried to set up the code so any input other than red, yellow and green would turn off the LEds and give a message like "there is no such LED", like: if (colInput !="red" || colInput !="green" || colInput !="yellow"){ digitalWrite(rPin,LOW); digitalWrite(gPin,LOW); digitalWrite(yPin,LOW); Serial.print("there is no such LED"); } But this doesn't work. Any suggestions?
@paulmcwhorter8 ай бұрын
LEGEND!
@robertschuldenfrei24028 ай бұрын
Hi Richard, && not ||
@richardsstark98258 ай бұрын
Thank You Robert! Yes, this worked but I still don't understand the logic behind it.@@robertschuldenfrei2402
@robertschuldenfrei24028 ай бұрын
@@richardsstark9825 Here is the logic behind it. In the || (or) construction if the color you entered is "red" it fails the first test since the color IS red, but it passes the second test because red is not "green." Even if the red LED was turn on in an earlier test like if(colInput="red") it will be turned off immediately when it hits your "or" constructed statement. If you want to learn Arduino programming at a much deeper level than Paul can do in this course I recommend a very elementary book: Sams Teach Yourself Arduino Programming in 24 Hours by Richard Blum. Even if you have never written a program before you could learn how it is done with this book. You will come to understand why some function look like loop() and others look like myValue.toInt(). [answer: the first is a function and the second is string object method]
@qzorn44406 ай бұрын
wikipedia... One 0 (zero) is a number representing an empty quantity. Adding 0 to any number leaves that number unchanged. 🤞 Twilight zone stuff.
@VeryUsMumblings8 ай бұрын
More Comments for KZbin juice!
@LorisHW7 ай бұрын
HW link Try #56: kzbin.info/www/bejne/o2q9e6GDjs-Ml9E
@paulmcwhorter7 ай бұрын
Its been a while, glad to see your homeworks once again.
@LorisHW7 ай бұрын
@@paulmcwhorter I seem to have found a link that did not get rejected this time. It continues to be a problem ...
@drdentin32158 ай бұрын
My ArduinoR4 homework 16 kzbin.info/www/bejne/eYjLl6uOebVpqZo. Thanks Paul. I used a blinkLED function. Paul has recently gone over functions classes and methods in the PicoW series approximately lesson 64. I thought it would be a challenge to see if I could do it in the Arduino IDE.
@paulmcwhorter8 ай бұрын
LEGEND!
@alistaircook19978 ай бұрын
Enjoyed your If Satement lesson, here is my homework for lesson 16 :- kzbin.info/www/bejne/iWrYaIxsZdZqeNU
@paulmcwhorter8 ай бұрын
LEGEND!
@robertschuldenfrei24028 ай бұрын
Finally got the video to stick. kzbin.info/www/bejne/nnzck6t5g5doars
@paulmcwhorter8 ай бұрын
LEGEND!
@Tron_Starfighter8 ай бұрын
LEGEND - kzbin.info/www/bejne/pJmYaauXbpmLqLs
@paulmcwhorter8 ай бұрын
Excellent!
@Adrian4278 ай бұрын
Thanks, Paul, for another great tutorial. Homework completed: kzbin.info/www/bejne/mam1lWtngZuhlbc
@paulmcwhorter8 ай бұрын
Nicely done.
@perfectly_unstable5 ай бұрын
Excellent lesson as usual. Homework complete kzbin.info/www/bejne/qHWmeGysfKZ1prs Many Thanks!!