Пікірлер
@pdsrvadventures4569
@pdsrvadventures4569 12 сағат бұрын
The example using your library to set time, fails
@RGInnovations
@RGInnovations 8 сағат бұрын
Have you installed the library properly?
@javisan6001
@javisan6001 23 сағат бұрын
Greath thank you!!! as today jul 8th 2024, Sketch loads and compile perfectly. Thank you for the effort. Regards from Guatemala
@veni-s3g
@veni-s3g 5 күн бұрын
also sir why cant we use resistor if the only need is to provide low resistance path to current?
@RGInnovations
@RGInnovations 5 күн бұрын
Resistor will continuously flow current, so it will heat up and burn.
@veni-s3g
@veni-s3g 5 күн бұрын
but sir isnt the diode is already built-in?
@RGInnovations
@RGInnovations 5 күн бұрын
No the diode is not built in.
@veni-s3g
@veni-s3g 5 күн бұрын
@@RGInnovations ohh ok sir.....no its just that i have seen a vedio where it is said that the relay switch,diode and the coil are a complete module built inside!
@RGInnovations
@RGInnovations 5 күн бұрын
If it's a module then diode should be there, but in a single relay, diode is not built in.
@veni-s3g
@veni-s3g 5 күн бұрын
@@RGInnovations ohhok sir thank you
@bojanmilojkovic3770
@bojanmilojkovic3770 5 күн бұрын
Would the same principle work for storring an array of 10 integers ? for the 5th element, i just write it starting from byte 5*4 ?
@RGInnovations
@RGInnovations 5 күн бұрын
Yes it will work
@amrehab9697
@amrehab9697 6 күн бұрын
I connected the Audio Amplifier to the ISD1820 as shown in the video, and after a short while the IC of the ISD1820 overheated and then burned out. Do you have any idea why?
@RGInnovations
@RGInnovations 6 күн бұрын
Which amplifier did you use?
@amrehab9697
@amrehab9697 6 күн бұрын
@@RGInnovations PAM8403 Digital Audio Amplifier
@amrehab9697
@amrehab9697 6 күн бұрын
@@RGInnovations PAM8403 Digital Audio Amplifier
@amrehab9697
@amrehab9697 5 күн бұрын
@@RGInnovations PAM8403 Digital Audio Amplifier
@ShreerakshaR-o8t
@ShreerakshaR-o8t 8 күн бұрын
Hlo sir u hav done blind stick project but i want to know how to apply code to that project
@RGInnovations
@RGInnovations 8 күн бұрын
Do you have knowledge of arduino?
@ShreerakshaR-o8t
@ShreerakshaR-o8t 8 күн бұрын
Hlo sir I want more information about this project
@RGInnovations
@RGInnovations 8 күн бұрын
Sure
@Electrical-ElectronicAASTextil
@Electrical-ElectronicAASTextil 8 күн бұрын
xy mode ?
@Learn-Math-And-Science
@Learn-Math-And-Science 10 күн бұрын
Thanks sir
@pravinkumarbpatel965
@pravinkumarbpatel965 13 күн бұрын
Thanks very much
@MrRadbadger
@MrRadbadger 15 күн бұрын
Nice work.
@RGInnovations
@RGInnovations 15 күн бұрын
Thank you.
@user-lx4ik2ed5c
@user-lx4ik2ed5c 16 күн бұрын
I make this but wiper does not move beyond 6.7 k another price giving resistance between 12k and 20 k what is the reason. I am using this code. const int up_buttonPin = 8; //Pin D8 of Arduino Nano const int down_buttonPin = 7; //Pin D7 of Arduino Nano int up_buttonState = 0; int down_buttonState = 0; const int inc_outPin = 10; //Pin D10 of Arduino Nano const int ud_outPin = 9; //Pin D9 of Arduino Nano int loop_cnt = 0; void setup() { Serial.begin(115200); pinMode(up_buttonPin, INPUT_PULLUP); //Internal Pullup on Up button (No external resistor required) pinMode(down_buttonPin, INPUT_PULLUP);//Internal Pullup on Down button (No external resistor required) pinMode(inc_outPin, OUTPUT); pinMode(ud_outPin, OUTPUT); digitalWrite(inc_outPin, HIGH); digitalWrite(ud_outPin, HIGH); while (!Serial) { // will pause Zero, Leonardo, etc until serial console opens delay(1); } } const int loopPeriod = 50; //Loop period equals three times of this value, ex) 50 * 3 = 150ms void loop() { loop_cnt = loop_cnt + 1; //Read the level of Up/Down button up_buttonState = digitalRead(up_buttonPin); down_buttonState = digitalRead(down_buttonPin); //Check if Up/Down Button is Pressed //When Button is Pressed, Level becomes LOW if (up_buttonState == LOW) { digitalWrite(ud_outPin, HIGH); delay(loopPeriod); digitalWrite(inc_outPin, LOW); delay(loopPeriod); digitalWrite(inc_outPin, HIGH); delay(loopPeriod); } else if (down_buttonState == LOW) { digitalWrite(ud_outPin, LOW); delay(loopPeriod); digitalWrite(inc_outPin, LOW); delay(loopPeriod); digitalWrite(inc_outPin, HIGH); delay(loopPeriod); } else { delay(loopPeriod*3); } }
@ameenenterprise5869
@ameenenterprise5869 18 күн бұрын
Hi sir Assalam Alaikum I want to control the stepper motor which move forward and reverse with humanity sensor can you help me some
@RGInnovations
@RGInnovations 18 күн бұрын
Move forward and reverse when?
@xyzquo
@xyzquo 19 күн бұрын
My ISD1820 is attached with PIR motion and mini amplifier, while all of those circuit is powered with 5V adapter. As time went, the recorded sound became strange and have a high pitch. Is it caused by the lack of power?
@RGInnovations
@RGInnovations 19 күн бұрын
Seems so.
@boblandstrom
@boblandstrom 19 күн бұрын
'Very thorough and clear explanation. Do you have any thoughts about how to use this device in an automatic playback mode after a specific delay? That is, like an echo box with specific delay time and repeat count. Thanks.
@RGInnovations
@RGInnovations 19 күн бұрын
If you want to repeat it after a delay, you can add a simple timer using 555 ic, if you also want to add repeat count, you have to add a microcontroller. I have shown in a next video, how you can use it with microcontroller..
@pavan__hegde
@pavan__hegde 19 күн бұрын
Thank you so much for useful information
@fkssake
@fkssake 24 күн бұрын
did you check which part fail
@RGInnovations
@RGInnovations 23 күн бұрын
No, it was an obsolete model of charger...
@volo_max
@volo_max 25 күн бұрын
Hi, in my circuit I have 9v. I could modify it?
@RGInnovations
@RGInnovations 25 күн бұрын
Add one 7805 IC
@pashmaster
@pashmaster 28 күн бұрын
Hi, I would like to use this, unfortunatly after install in win 10 (64bit) the app PCscope does not start. Would be of great use for a small project so I don't have to buy a scope;-)
@RGInnovations
@RGInnovations 28 күн бұрын
Right click on the app, select properties, select compatibility, choose winxp sp2, click ok, hope the app will work again.
@pashmaster
@pashmaster 28 күн бұрын
@@RGInnovations Thank you! I managed to get it to work on win8.1 (Not yet on Win10, XP compatibility SP3 is the only option I am given). So for the start I could make the measurements I was looking for. Very satisfying! All the best!
@KiranJadhav-bg9tn
@KiranJadhav-bg9tn 29 күн бұрын
I want to design a Automatic anthem player (at starting Jan Gan Man & At end of day vande mataram) for collage only on working days daily with help of arduino and RTC.
@RGInnovations
@RGInnovations 29 күн бұрын
How far have you done?
@KiranJadhav-bg9tn
@KiranJadhav-bg9tn 28 күн бұрын
@@RGInnovations i am confuse to use MF T16 device & RTC with Arduino. I have used separately both device with Arduino but not same at a time.
@RGInnovations
@RGInnovations 27 күн бұрын
You can check out this video of mine. kzbin.info/www/bejne/Zn_Mq4qGn9mKrc0 I have shown a 2 alarm clock module, you can alter the code to repeat it on weekdays.
@computerlen
@computerlen Ай бұрын
Why not use a momentary switch?
@RGInnovations
@RGInnovations Ай бұрын
To implement touch facility
@gotitcrackit
@gotitcrackit Ай бұрын
Record Kiya hua kitti baar chlega
@RGInnovations
@RGInnovations Ай бұрын
Until you record next time.
@zain3532
@zain3532 Ай бұрын
whats the point of the servo?
@RGInnovations
@RGInnovations Ай бұрын
Servo is used just for a special effect of flag down.
@zain3532
@zain3532 Ай бұрын
Can I use any type of buttons?
@RGInnovations
@RGInnovations Ай бұрын
Yes, any momentary push switch will do.
@A__GARV_SAXENA
@A__GARV_SAXENA Ай бұрын
sir thank you for making this video i only find your video on this topic on youtube. you explained it in very detailed. Good work!!
@gorepatchstudios8686
@gorepatchstudios8686 Ай бұрын
How do you add a trigger button without hitting play button all time
@RGInnovations
@RGInnovations Ай бұрын
Means?
@gorepatchstudios8686
@gorepatchstudios8686 Ай бұрын
@@RGInnovations , I'm wanting to add a switch to stop and start the sound, the switch will be in my palm .. using it for a cosplay
@RGInnovations
@RGInnovations Ай бұрын
You can connect a switch from the VCC pin and P-E pin.
@RGInnovations
@RGInnovations Ай бұрын
You can get more details in this video kzbin.info/www/bejne/jXaromeAptmnh9E
@gorepatchstudios8686
@gorepatchstudios8686 Ай бұрын
@@RGInnovations , what size amp and speaker would you recommend for higher quality sound?
@cz-livestream2628
@cz-livestream2628 Ай бұрын
Very Well explained!
@Cutiecat54
@Cutiecat54 Ай бұрын
@Cutiecat54 1 second ago I am learning Ardunio , trying to upload DS1302 Sketch however i am getting error as Sketch uses 4718 bytes (15%) of program storage space. Maximum is 30720 bytes. Global variables use 247 bytes (12%) of dynamic memory, leaving 1801 bytes for local variables. Maximum is 2048 bytes. avrdude: ser_open(): can't open device "\\.\COM5": The semaphore timeout period has expired. Failed uploading: uploading error: exit status 1 Please help me
@RGInnovations
@RGInnovations Ай бұрын
Have you selected proper arduino board in the board selection menu?
@mecidelhasan9398
@mecidelhasan9398 Ай бұрын
you are awesome , I was searching on youtube for ky-036 sensor , but didnt find any explanation like yours ,you just saved my life , thank you so so much 💙💚
@nepto5817
@nepto5817 Ай бұрын
Very good information
@RGInnovations
@RGInnovations Ай бұрын
Thank you
@captain-od1me
@captain-od1me Ай бұрын
Keep getting all 0 any help ?
@RGInnovations
@RGInnovations Ай бұрын
Check jumper cables
@captain-od1me
@captain-od1me Ай бұрын
@@RGInnovations thank you !!!! Definitely gained a subscriber !
@Vijaykumar-ff3rh
@Vijaykumar-ff3rh Ай бұрын
Nice explanation ❤
@RGInnovations
@RGInnovations Ай бұрын
Thank you
@nagendrarao6177
@nagendrarao6177 Ай бұрын
Good explanation. How to make it to store and play 132 seconds record and play back. Will you supply one board with this modification and tested.
@RGInnovations
@RGInnovations Ай бұрын
It cannot store 132 seconds
@nagendrarao6177
@nagendrarao6177 Ай бұрын
Pin details of 12v power input jack not explained,Inner pin is +ve or -ve
@RGInnovations
@RGInnovations Ай бұрын
Inner pin is +ve
@otoovoindia
@otoovoindia Ай бұрын
🙏🙏🙏
@otoovoindia
@otoovoindia Ай бұрын
🙏🙏🙏
@akshaykumargurjar8743
@akshaykumargurjar8743 Ай бұрын
I'm working on water flow meter. it measures how much water is used in liters. i want to store it at24c256, after using the water it should add in previous data. and after power off it remains saved. can you please tell me??
@RGInnovations
@RGInnovations Ай бұрын
Which part do you want to know?
@otoovoindia
@otoovoindia Ай бұрын
👍👍👍🙏 🙏🙏🙏🙏🙏🙏🙏
@avitinh
@avitinh Ай бұрын
Hi. how old are you ?
@user-me9jw7xu1l
@user-me9jw7xu1l Ай бұрын
Very nice
@RGInnovations
@RGInnovations Ай бұрын
Thank you.
@user-rt8xg7zf7i
@user-rt8xg7zf7i Ай бұрын
المهندس /منصورعبده عبدالله دوير تحكم كهرباء العام
@OrLevy-up3es
@OrLevy-up3es Ай бұрын
@sabbirahmedsaad6351 3 weeks ago Excellent explanation! greetings from Israel.
@shrikantghadge5452
@shrikantghadge5452 Ай бұрын
pls share your number, from where can i get parts from market
@RGInnovations
@RGInnovations Ай бұрын
I purchase online, do not know where parts are available in market.
@RGInnovations
@RGInnovations Ай бұрын
I purchase online, do not know where parts are available in market.
@user-rq6lf4nt3m
@user-rq6lf4nt3m 2 ай бұрын
Thank you 👍
@SAHILSHAIKH-lw7nl
@SAHILSHAIKH-lw7nl 2 ай бұрын
Which Module can us for 30sec 60sec ? Fo4 Custmized Greeting cards ? (Because we are Doing Wholesale & manufacturer of Gifts so...) need your help sir
@RGInnovations
@RGInnovations 2 ай бұрын
There are 30 seconds module for greetings card, search google with 30 second voice module for greetings card.
@RGInnovations
@RGInnovations 2 ай бұрын
It looks like this - techtonics.in/wp-content/uploads/2023/10/tech2189-22.jpg
@uditagrawal80
@uditagrawal80 2 ай бұрын
Thanks for the prompt reply, another query, can we somehow re-order the categories and parts once they are created. Basically if I have an existing list of categories and related parts , and now want to add a new category or part, but do not want the part to appear at the bottom, is it possible to do so?
@RGInnovations
@RGInnovations 2 ай бұрын
Sorry there is no option of reordering, it sorts alphabetically
@RGInnovations
@RGInnovations 2 ай бұрын
Just one suggestion, rename a category by pressing f2, and add a number before it, then it will be sorted according to the number
@RGInnovations
@RGInnovations 2 ай бұрын
Hope it solved your prpblem?
@uditagrawal80
@uditagrawal80 2 ай бұрын
Also can we delete a category or a part once it is created? Nice Applications and kudos pm the effort!
@RGInnovations
@RGInnovations 2 ай бұрын
Yes, to delete a category select the category and press delete on keyboard. Same for the items.
@uditagrawal80
@uditagrawal80 2 ай бұрын
Hi is it possible to add passives with their respective values, so that we can search based on value as well?
@RGInnovations
@RGInnovations 2 ай бұрын
Yes possible, create item with their value in the name.
@uditagrawal80
@uditagrawal80 2 ай бұрын
@@RGInnovations thanks. also is it possible to delete a category or a part once it is created? Also can we add sub-categories?
@somboonch
@somboonch 2 ай бұрын
maximun volt input to A0
@RGInnovations
@RGInnovations 2 ай бұрын
5v