This is the clearest explanation of how to implement a progress bar - I love your style - thanks for the inspiration
@ranjithkumarak39378 жыл бұрын
As an engineer, i love the way you write and show stuff on paper.
@bgaworkshop7209 Жыл бұрын
I love the way you explain. Very clear. Thank you.
@brennocarvalho8394 жыл бұрын
EXCELENTE!!! Poderia utilizar o exemplo em modo ponto/barra? Estou precisando saber como executar um programa como este. Sou iniciante em arduino. Obrigado!!!
@kiranpatel91015 жыл бұрын
Super tutorial for progress bar, made it so easy for me, wonderful
@davidebertuzzi23372 жыл бұрын
This is a GOOD explanation
@kwissiekwissie Жыл бұрын
definitely CLEAR explanation !!! Thanks!
@mitsos_3066 жыл бұрын
one of the best video i've seen.great work!!
@AzamAbbasi3 жыл бұрын
Hi Tom, You explained very well but I'm little bit worried that you have created characters but never used in the loop. Your output can simply work with only below loop void loop() { lcd.setCursor(0,1); for(int i=0; i
@hamradio5995 жыл бұрын
Your solution also works on my 40 x 4 LCD with LiquidCrystal440.h library. Your great effort are appreciated.
@mrbigheart8 жыл бұрын
could we see the copde, please? :)
@YvanLeTerrible318 жыл бұрын
Hello - Any chance you make your code available ??
@heinzbuff47457 жыл бұрын
Great script !!! Is it available for download ? If yes, where ? Thank you ...
@Muggs8284 жыл бұрын
Yeah, What Geoff said. Super clear explanation! Thank you!!! Subscribing now.
@SumitKumar-sg9pt4 жыл бұрын
awesome explanation
@alraed452 жыл бұрын
Thank you 😊
@melisawhitt83608 жыл бұрын
sure wish you would show your code ..but thanks helped a lot great job
@electronmath86094 жыл бұрын
Clear explanation. 👍👍👍
@MrBobWareham5 жыл бұрын
Thank you very easy to follow
@ElettronicaRiparo2 жыл бұрын
Grazie mille è stato molto utile
@rhettherring48467 жыл бұрын
This is awesome... and a great explanation... just wondering if there is an ino we can download or view online?
@tmc2005277 жыл бұрын
//LCD Progress Bar //Include the library code: #include //Initialize the library with the numbers of the interface pins LiquidCrystal lcd(2, 3, 4, 5, 6, 7); //Create the progress bar characters byte p20[8] = { B10000, B10000, B10000, B10000, B10000, B10000, B10000, B10000, }; byte p40[8] = { B11000, B11000, B11000, B11000, B11000, B11000, B11000, B11000, }; byte p60[8] = { B11100, B11100, B11100, B11100, B11100, B11100, B11100, B11100, }; byte p80[8] = { B11110, B11110, B11110, B11110, B11110, B11110, B11110, B11110, }; byte p100[8] = { B11111, B11111, B11111, B11111, B11111, B11111, B11111, B11111, }; void setup() { //Set up the LDCs number of columns and rows: lcd.begin(16, 2); //Print a message to the LCD. lcd.print("ETechTomsChannel"); //Make progress characters lcd.createChar(0, p20); lcd.createChar(1, p40); lcd.createChar(2, p60); lcd.createChar(3, p80); lcd.createChar(4, p100); } void loop() { //Move cursor to second line lcd.setCursor(0,1); //Clear the line each time it reaches the end //with 16 " " (spaces) lcd.print(" "); //Iterate through each character on the second line for (int i=0; i
@rhettherring48467 жыл бұрын
Thank you sir.... I actually went ahead and copied from your notes on the video... works awesome! Thanks!
@afzalqureshi80915 жыл бұрын
very nice and very helpfull, Thanks
@9427gyan6 жыл бұрын
Superb explanation
@tmc2005276 жыл бұрын
Thank you
@televizorlol2 жыл бұрын
Спасибо
@raindogred8 жыл бұрын
excellent thanks
@ArtemCor8 жыл бұрын
Автор крут. Он это сделал. Лучше бы скетч выложил. Пол дня парился с такими вот обрубками инфы, ни один выложенный скетч не работает. Чё толку с этого видео... Я выложил видео и сразу к нему скетч.
@emrahbayram85943 жыл бұрын
good:)
@jairalves34058 жыл бұрын
Thanks : )
@Ahmadnaweed7866 жыл бұрын
you don't make sense, why would lcd print j ? while it has no connection with those custom characters.