Contribuinte Legal
0:51
Ай бұрын
Postgres and pgAdmin in Docker
9:05
Socket-io Intro - Chat App
12:31
4 ай бұрын
Rails - Active Admin 3.2.0
7:48
8 ай бұрын
Rails Blog In VS Code-Noticed V2
20:24
Rails Blog In VS Code-Noticed V1
24:44
How To Send Email In Rails 7?
14:56
A Rails Blog In VS Code - Devise
44:35
TSL2561 Ambient Light Sensor
4:56
10 ай бұрын
NEMA 17 Stepper Motor Test
0:32
10 ай бұрын
28BYJ-48 12 V Stepper Motor Test
3:44
PIR Motion Sensing LED Display
2:45
Rain Detector Sensor YL-83
0:36
11 ай бұрын
Пікірлер
@bartoszrozycki3766
@bartoszrozycki3766 12 күн бұрын
Very interesting and helpful video. If it possible please send to me C file from this project because I can't download it from above link. Greetengs from Poland.
@j3_
@j3_ 12 күн бұрын
// Hardware config #define D1 GPIO.F1 // Pin 6 GPIO 1 #define D2 GPIO.F2 // Pin 5 GPIO 2 #define D3 GPIO.F4 // Pin 3 GPIO 4 #define D4 GPIO.F5 // Pin 2 GPIO 5 int read = 0; void main() { ANSEL = 1; // same as 0b00000001; Select GPIO F0 as analogue imput ADCON0 = 1; // Select analogue imput AN0 CMCON = 7; // All comparators off TRISIO = 1; // Set GPIO.F0 as imput GPIO = 0; // Set all pins in low while(1) { read = ADC_Read(0); // 10-BIT ADC = 1023 / 5 = 204 FOR EACH 05 SECTIONS if(read > 0) //SECTION 0 { D1 = 0; D2 = 0; D3 = 0; D4 = 0; } //SECTION 1 if(read > 204) //204 { D1 = 1; D2 = 0; D3 = 0; D4 = 0; } //SECTION 2 if(read > 408) //204 + 204 { D1 = 1; D2 = 1; D3 = 0; D4 = 0; } //SECTION 3 if(read > 612) //204 + 204 + 204 { D1 = 1; D2 = 1; D3 = 1; D4 = 0; } //SECTION 4 if(read > 816) //204 + 204 + 204 + 204 { D1 = 1; D2 = 1; D3 = 1; D4 = 1; } delay_ms(100); //ADC refresh rate } //end while } //end main
@bartoszrozycki3766
@bartoszrozycki3766 11 күн бұрын
@@j3_ Thank You :).
@ashikkagoji9783
@ashikkagoji9783 15 күн бұрын
How run more speed
@j3_
@j3_ 13 күн бұрын
Simply use gear drivers with a 1:n ratio.
@Bukalowski
@Bukalowski Ай бұрын
Nice projects!!!
@ruslanmiskinov8790
@ruslanmiskinov8790 Ай бұрын
what a moron...
@devarajan5528
@devarajan5528 2 ай бұрын
15 level indication possible aa sir? & Please give me Circuit diagram sir.
@juliangonzalez6025
@juliangonzalez6025 2 ай бұрын
muito bonito
@HE9JSD
@HE9JSD 5 ай бұрын
aluminium foil for anti-static, good idea! thumb up
@j3_
@j3_ 4 ай бұрын
Anti-static plastic contains organic molecules that are not compatible with regular polymers. These molecules move to the surface, where their non-polar end anchors in the polymer, and their polar, water-attracting end sticks out. This attracts moisture from the air, which then provides a path for static charge to dissipate.
@j3_
@j3_ 4 ай бұрын
suck this
@DheerajkumarLeetPTG
@DheerajkumarLeetPTG 5 ай бұрын
Step 10 does not work how can do this
@j3_
@j3_ 5 ай бұрын
Hi @DheerajkumarLeetPTG ! When using app passwords, Do you set your 2-Step Verification on your Google Account? Here is how to: support.google.com/mail/answer/185833?hl=en. Hope it helps :)
@DheerajkumarLeetPTG
@DheerajkumarLeetPTG 5 ай бұрын
@j3_ thanks bro, it's working now
@Jijijija-d3n
@Jijijija-d3n 6 ай бұрын
Gracias hermano 🔵⬜🔶⬜🔵
@JevanRoseHisona
@JevanRoseHisona 6 ай бұрын
Hello.. can you suggest another king of switch to used? ThNkz♥️
@cavadrezade2544
@cavadrezade2544 8 ай бұрын
thank you ❤
@cavadrezade2544
@cavadrezade2544 8 ай бұрын
thank you ❤
@oveschleisner-meyer8139
@oveschleisner-meyer8139 9 ай бұрын
Great video... Do you have the code ??? I can´t use the link in your comments because I´m not alloud to go in...
@j3_
@j3_ 9 ай бұрын
github.com/giljr/Pic_Interrupt_Serie/blob/master/01_IntSerie_Interrupts_The%20Concept.asm
@AdaptingCamera
@AdaptingCamera 9 ай бұрын
Horrible music in the background. If you haven't had that noise I would have watched.
@monikajangir5287
@monikajangir5287 9 ай бұрын
kzbin.info/www/bejne/goPRg6d9gNyJsJo
@MichaelB-zr4ld
@MichaelB-zr4ld 9 ай бұрын
*Promo SM* 🤭
@widytrianto7078
@widytrianto7078 11 ай бұрын
can you help me about code for 2*8 digit using 3 IO pins?? Thank you
@Dancopymus
@Dancopymus 11 ай бұрын
Hello friend! Firstly, thanks for the video. Would you have any Arduino code for a clock with this register and a 7-segment display? Otherwise, can I use the code made for the 74HC595 with the 74CH164 (for a 7-segment clock)? If you can answer me, I would appreciate it.
@j3_
@j3_ 11 ай бұрын
Hi @Dancopymus, while both the 74HC595 and the 74HC164 are shift registers and share some similarities in functionality, they have differences in their internal architecture and pin configurations. Therefore, you cannot directly use the code made for the 74HC595 with the 74HC164 without making modifications. Regarding the clock, this will be discussed in a future episode. Thanks for asking. Take care!
@Dancopymus
@Dancopymus 11 ай бұрын
Thanks@@j3_
@smartups1
@smartups1 11 ай бұрын
Share the code please
@cemacehualli9937
@cemacehualli9937 Жыл бұрын
Great projects! Thank you!
@j3_
@j3_ Жыл бұрын
You're welcome, @cemacehualli9937!
@peterrodell4582
@peterrodell4582 Жыл бұрын
Quite interesting and informative. Like the " turn it down until it stales" to benchmark minimum volts.. then wind it up "enough " to run effectively. Thanks. Peter
@joaopedrosilvarodrigues3770
@joaopedrosilvarodrigues3770 Жыл бұрын
This symbol gave me a lot of trouble. I tought E was the gate. Thanks for posting this.
@JohnDoew-hz8qt
@JohnDoew-hz8qt Жыл бұрын
Excellent 'spermeent ! Wheel doone ! 🎉😂 I've made some kitchen work in the meaning time, hose cleaning, shoppings, and still need few more minutes of watching to find out the intriguing final results !
@mbanc443
@mbanc443 Жыл бұрын
Good video but mixing with music was a big mistake....
@DavidKHill
@DavidKHill Жыл бұрын
Thanks! The background music is a bit too loud. I had a difficult time hearing your voice. Good video though. Needed something to play with and I found it.
@j3_
@j3_ Жыл бұрын
Apologies! I'll make sure to keep the sound at a lower volume next time. Appreciate your feedback! Wishing you a great week ahead!
@DavidKHill
@DavidKHill Жыл бұрын
@@j3_ No problem! Keep'em coming!
@sammyhopkins5733
@sammyhopkins5733 Жыл бұрын
*Promo SM* 😩
@prof_overkill7389
@prof_overkill7389 Жыл бұрын
Thank you, helped a lot
@zimasajam
@zimasajam Жыл бұрын
Missing Input file error. arduino.exe is missing in specified path
@trickskidwilliam
@trickskidwilliam Жыл бұрын
can you make a tutorial on capacitor limit switch simulation?
@mouradm9129
@mouradm9129 Жыл бұрын
nice tutorial. good job!!!! thanks
@pat-coder1396
@pat-coder1396 Жыл бұрын
I have been trying to build this circuit on bread boards and it's not working at all. Have you tried building it in real life?
@j3_
@j3_ Жыл бұрын
medium.com/jungletronics/electronic-scoreboard-v1-0-9767dfd44bd7 that's for sure! thanks for asking!
@ReeZYT
@ReeZYT Жыл бұрын
How did u adjust them? Mine are always on or off but not changing when the ground color is changing
@j3_
@j3_ Жыл бұрын
Hi Lukas! Please see your infrared light through your smartphone camera and check if it is working; than confirm baud rate in serial on Arduino IDE. Hope that helps!
@YildizTechnology
@YildizTechnology 10 ай бұрын
i have that problem too. did you solve? if you solved, how you did may you say
@ArthasProVEVO
@ArthasProVEVO Жыл бұрын
You brought Old Legendary Differential Video to Lego Life, great work man 👍
@GM-sn2vg
@GM-sn2vg Жыл бұрын
Thanks for you quick video. I totally forgot to connect the last two ground pins. It worked like a charm after that.
@hdguppies
@hdguppies Жыл бұрын
Enjoyable to watch and helpful. Thank you!
@phuoctin9507
@phuoctin9507 Жыл бұрын
Hello. You must share code
@srmstm1077
@srmstm1077 2 жыл бұрын
Получается, этот драйвер служить как предохранитель моторчика? Если механизм заклинило то драйвер может спасти двигатель ?
@antonyj7990
@antonyj7990 2 жыл бұрын
thank you.
@javierHuertay
@javierHuertay 2 жыл бұрын
Hi the pdf, is blocked atm, can you please give access to it again?
@j3_
@j3_ 2 жыл бұрын
drive.google.com/file/d/0B8iMbc-iQqlUSUxZNlZMdDJBRjg/view?usp=sharing&resourcekey=0-XRxeDu8ydcVGWyz4gH3jtw
@KamphonSaimai
@KamphonSaimai 2 жыл бұрын
อยากลง library avr.io.h นี่ต้องทำไงครับ
@josemiguelyucrasulca3343
@josemiguelyucrasulca3343 2 жыл бұрын
@abpccpba
@abpccpba 2 жыл бұрын
Great job; best for me. Thanks : = }}
@estebanpa7923
@estebanpa7923 2 жыл бұрын
Thanks 😁
@Party-bb2qv
@Party-bb2qv 2 жыл бұрын
i cant watch the video for some reason?
@siyammohammed5416
@siyammohammed5416 2 жыл бұрын
Hello sir i downloaded proteus file but the 7SEG - COM -Cathode is not working ( means no light is there so it can't count ) even if i simulate it, pls help me since it is important for me
@dinhtuan752
@dinhtuan752 2 жыл бұрын
kzbin.info/www/bejne/r4qkqGpvaJ1pjas
@ameer_humood
@ameer_humood 2 жыл бұрын
Please solve this error for me avrdude.exe: can't open config file "C:\Program": No such file or directory avrdude.exe: error reading system wide configuration file "C:\Program" It happens when I send the code
@vitalibelcev
@vitalibelcev 2 жыл бұрын
Great! It work! Thanks!
@josephtannenbaum8696
@josephtannenbaum8696 2 жыл бұрын
I don't think many hobbyists will spend $249.00 for a compiler.
@j3_
@j3_ 2 жыл бұрын
Yeah :/ Try this from SparkFun: www.sparkfun.com/tutorials/76. There's always another one :) Thanks for the feedback. Have a great year o/
@j3_
@j3_ 2 жыл бұрын
microcontrollerslab.com/pic-microcontroller-compiler/
@gireeshulliyeri3058
@gireeshulliyeri3058 2 жыл бұрын
i tried not working
@Lazin1
@Lazin1 2 жыл бұрын
That because this person wants you to visit their website to purchase it!