How to do multiple tasks in Arduino | Beginners | millis() function

Поділитися
Вставка
  • Опубліковано 15 лип 2024
  • Have you ever felt difficulties while trying to do multiple tasks in Arduino?
    If yes, this video is for you 😉.
    Arduino is not built to do multiple tasks at the same time. It doesn’t support Multithreading like any classic computers you have. It executes instructions one by one in a queue.
    But the good news is… Still, you can do some tricks to make an illusion of doing multiple tasks at the same time.
    Article: www.amritaryal.com.np/posts/c...
    Media where you can contact me:
    Github: github.com/Amritaryal44
    Instagram: / its_elixir44
    Facebook: / techsbyamrit
    Twitter: / amritaryal44
    Some images used in this video are from rawpixel.com and pngtree.com.
  • Наука та технологія

КОМЕНТАРІ • 145

  • @emrekoprulu423
    @emrekoprulu423 Місяць тому +1

    I am a fourth year electrical and electronics student. We had to do multiple tasks in our graduation project and we couldn't figure out how to do it. Thanks to you, we solved our problem. I am very grateful to you.

  • @CaptTambo
    @CaptTambo 2 роки тому +63

    This is the most helpful video I've found explaining the millis function so far. However, I'm still a bit confused. I'll practice and learn hopefully.

    • @explorerpragun431
      @explorerpragun431 2 роки тому

      Same

    • @YouKnowMeDuh
      @YouKnowMeDuh 2 роки тому +9

      If it helps, basically, instead of using a command that halts command execution (delay) he's simply comparing times in a conditional statement to control when the light turns on/off. Using delay, the loop() function takes 2 seconds to complete before it runs again in the initial code, because the delay there is 2 seconds. This leaves very little time for the Arduino to realize when a button press occurs in the latter part of the code. Without using delay, the loop runs at a much higher speed and thus condition checks run much faster.
      For example, let's assume this code is short enough that without delays, loop() running a single time only takes 100 milliseconds at 5:17. So in one second, loop() runs 10 times. So the loop would check for a button press every 10 milliseconds while also checking whether the current time is a minimum of 1000 milliseconds after the last time stamp we saved to the prevTime() variable. Since prevTime() is only set when the condition statement is true, it remains whatever value it was set to eg. 5000 until the difference between the previously saved time and the currently reported time (time continuously updates during program execution), is greater than 1000 ms.
      He probably should have set it to >=1000ms because technically, the LED would always be on for slightly longer than the intended 1 second otherwise.

  • @ThePhaaze
    @ThePhaaze 2 роки тому +3

    This video was extremely comprehensive.
    Thank you so much and have a wonderful day!

  • @zatkolucas7838
    @zatkolucas7838 2 роки тому +2

    What an explanation, just what is was looking for. THANKS!

  • @joshuaoduroadu5376
    @joshuaoduroadu5376 Рік тому +1

    The best explanation of the millis function to date I have watched.
    Thanks for sharing.
    I will try this approach hopefully make good progress.

  • @Mattbe72
    @Mattbe72 Рік тому

    Simple and efficient 10 min of video ! Thanks a lot 😀

  • @stonynotdusty
    @stonynotdusty 3 роки тому +2

    That was super good. May God bless you for helping others with this.

  • @deebiga1781
    @deebiga1781 2 роки тому +2

    That was comprehensible! Thank you.

  • @alirazakyara5676
    @alirazakyara5676 2 роки тому

    This is Razak from Ghana and I just want to say thank you very much

  • @brutalshiteater
    @brutalshiteater 2 роки тому +14

    That was very helpful, it's amazing how you are able to explain the complex problem of multitasking in such an understandable way.

  • @msunrl8577
    @msunrl8577 2 роки тому +1

    Big thanks! High quality explaination

  • @vinothn4228
    @vinothn4228 11 місяців тому

    This is really a great video . I literally decided to move some 32bit controllers like ESP32 for some multitasking abilities. But, now you made it easier than i thought 💭 😁.

  • @ashikislam232
    @ashikislam232 10 місяців тому +1

    This was a very helpful and educational video. Thank you, Sir!

  • @Shivaaayy
    @Shivaaayy 2 роки тому +2

    Awesome solve all my doubts regarding parallel processing in Arduino

  • @theJonnymac
    @theJonnymac 6 місяців тому

    great video, clear, well throught out. Just great!!!!

  • @user-me4vu9mt8c
    @user-me4vu9mt8c 3 місяці тому

    an extremely useful and easy to understand guide, keep up the good work!

  • @theIMMUNICORN
    @theIMMUNICORN 2 роки тому +1

    This explanation is excellent. Very helpful & thank you ..!

  • @ZookeeperJohnG
    @ZookeeperJohnG 2 роки тому +1

    VERY well explained, Thank You!

  • @pranab1234
    @pranab1234 2 роки тому +1

    Excellent. Thank you for this.

  • @alx8439
    @alx8439 2 роки тому

    Amrit, you're amazing in explaining things. You should be a school teacher! Love you

  • @dougsteel7414
    @dougsteel7414 2 роки тому +1

    Really clear explanation!

  • @TheLostPig
    @TheLostPig 3 роки тому +1

    Beautiful work. Thank you

  • @manuramnishad3028
    @manuramnishad3028 2 роки тому

    You are great sir continue this type video ❤️👍🙏🙏

  • @rajarshimondal1343
    @rajarshimondal1343 8 місяців тому

    This was truly well detailed and informative video, I was going to make a home automation project with a clock in it, this might solve my problem. Thank you so much ❤❤

  • @willmaxwell2184
    @willmaxwell2184 2 роки тому +3

    Great job explaining this in great detail. I have 2 projects in mind to do but couldn't figure out the delay problem. With Millis it all makes since. Back to do some coding. I will have a question in the near future though.

  • @mohammadsamer4541
    @mohammadsamer4541 2 роки тому +1

    Excellent explanation, thank you

  • @bipradasmandal6811
    @bipradasmandal6811 2 роки тому

    Great concept & good explanation

  • @unitedcolorsofmydick
    @unitedcolorsofmydick 2 роки тому

    Great job indeet. Thanks

  • @ilijamajcen5426
    @ilijamajcen5426 5 місяців тому

    you have a nice way of explaining. thanks

  • @adipurnama_workshop
    @adipurnama_workshop 2 роки тому +1

    Great explanation, thank you

  • @Th3_Gael
    @Th3_Gael 2 місяці тому

    You need to make more arduino tutorials.
    This was short, to the point and showed the full concept unlike other videos where I've been trying to piece it together from several videos.

  • @TON-vz3pe
    @TON-vz3pe Рік тому

    Really helped. Thanks man.

  • @MatiasLeguizamon-bc3zm
    @MatiasLeguizamon-bc3zm 2 місяці тому

    Very well done video, nice editing, clear explanation, it helped me a lot

  • @JB-20
    @JB-20 Рік тому

    Thanks for sharing your knowledge.

  • @anokhautomation4453
    @anokhautomation4453 Рік тому

    Very very useful tutorial 👍👌

  • @bernardgonthier4646
    @bernardgonthier4646 Рік тому

    Very very well explained 👏 easy comprehensive speech and pictures. Hope you want to do more sketches off arduino statements.

  • @High-TechSolutions
    @High-TechSolutions Рік тому

    Tysm you did a good job teaching!

  • @scalt8367
    @scalt8367 11 місяців тому

    That's a very good video, thanks !

  • @---------______
    @---------______ 7 місяців тому

    This was very helpful, thank you

  • @JorgeLuis-po5uq
    @JorgeLuis-po5uq 10 місяців тому

    Very interesting 👌 I will try to make it to my own Arduino thanks 😊

  • @artursrikmanis
    @artursrikmanis Рік тому

    such a good video!!!❤

  • @onezerodev1756
    @onezerodev1756 Рік тому

    Good explanation. Thank you

  • @kushalpoudel392
    @kushalpoudel392 3 роки тому +21

    Who is here before 1 million ?

  • @ineffige
    @ineffige 2 роки тому +4

    Perfect! This the best video explaining multitasking on Arduino I have ever seen. Fantastic job mate!

    • @martinkuliza
      @martinkuliza 9 місяців тому

      If that is true then you haven't looked into ESP32
      ESP32 Multitasking shits all over this and then some

    • @ineffige
      @ineffige 9 місяців тому

      @@martinkuliza I needed this for Arduino not esp32

    • @martinkuliza
      @martinkuliza 9 місяців тому

      @@ineffige
      OK, I guess.
      if you want to make life hard for yourself, go for it.
      I also know how to implement Multi Tasking (Not like in this video) but as you would in ESP32 using FreeRTOS as well
      I'm not suggesting you should do it,
      I'm just saying
      YOU CAN DO IT
      YOU CAN TRY IT
      YOU CAN INSIST ON MAKING YOUR LIFE DIFFICULT
      or you can transition to something that will make your life easier
      don't get me wrong
      I'm from 70s Electronics, i have Massive respect for Arduino
      but fact is fact, Arduino doesn't compare to ESP32
      which is why Arduino Dev Boards are now being sold with Bluetooth and WiFi Integrated
      the issue with these boards is still
      Even though they have WiFi and Bluetooth
      They haven't increased in memory
      they don't have dual core processing
      Its sad to admit, But Arduino is Dying
      to persist through a problem using band aid solutions like milli's
      is to continue to make your life difficult for no reason
      but hey.... WHATEVER MAKES YOU HAPPY MATE

    • @ineffige
      @ineffige 9 місяців тому

      @@martinkuliza lol. If I wanted tips for esp32 I would search for it not Arduino. Why so bitter dude

    • @martinkuliza
      @martinkuliza 9 місяців тому

      @@ineffige
      Bitter ???
      No. I'm not bitter
      I'm offering advice. LOL
      Where did you get bitter from ?
      No..... Not bitter, Just trying to make life easier for people.
      it's commonly understood that if you have a delay issue using delay() in Arduino you move to millis.
      AND THAT'S WHERE MOST PEOPLE GET STUCK
      Mainly because they don't know about ESP32 (Most people don't) it's nothing to be ashamed about
      I'VE PERSONALLY BEEN DOWN THIS ROAD.
      When i saw the video and the word MULTI TASKING i assumed he was going to talk about task creation in ESP32, Instead he went on about Arduino
      Multi Tasking in Arduino is a real pain staking process, Later down the track you realize, you should have gone with ESP32
      so, I'm not bitter
      I'M GIVING YOU THE FORESIGHT OF MY EXPERIENCE
      I'm trying to help you, I"m not bitter
      OK, so tell me this then,
      if you're aware of ESP32, and Arduino's Memory and core limitations
      as well as increased price
      why do you continue to use it

  • @Abdelrahman_Hosny
    @Abdelrahman_Hosny Рік тому

    Very helpful, Thanks

  • @muhammadm1237
    @muhammadm1237 2 роки тому

    Wonderful bro 😎

  • @m.fadhiilhaekal7693
    @m.fadhiilhaekal7693 11 місяців тому

    Very good explanation tysm

  • @govindaaryal2202
    @govindaaryal2202 6 місяців тому

    This is very helpful video, Please make videos for beginners from the basic level.

  • @9a1cool
    @9a1cool Рік тому

    very good sir!

  • @mezzofresh3521
    @mezzofresh3521 2 роки тому

    Your awesome bro

  • @warriorexe3708
    @warriorexe3708 Рік тому

    Very helpful : ).

  • @unglaubichuberlieber8048
    @unglaubichuberlieber8048 Рік тому

    gut...sehr gut !!!

  • @mohammedsiddig7975
    @mohammedsiddig7975 2 роки тому

    helpfully!!!!!!!!!!

  • @bob-ny6kn
    @bob-ny6kn 2 роки тому +8

    This method of timing has real-world use. The aviation industry uses an inter-device protocol with a "bus list" format with sub loops inside a main loop. You determine priority devices and add hardware interrupts, but the loops continues indefinitely.

    • @teamwinston2902
      @teamwinston2902 11 місяців тому

      yeah thats my problem i have a timer which runs perfectly but i want that my loop also work with that timer but my code stuks in that loop and the timer dont run

  • @kevalnakar6269
    @kevalnakar6269 Рік тому +1

    Well done brother
    Jay Hind

  • @roshankc6755
    @roshankc6755 3 роки тому

    great

  • @smacool2975
    @smacool2975 Рік тому +1

    Thanks for the fantastic video explanation.. I meant to ask, what is the difference between your way and using interrupt function?

  • @mekimr9736
    @mekimr9736 2 роки тому

    Thank you so much))

  • @soorajjayashankar3768
    @soorajjayashankar3768 Рік тому

    😍👍

  • @SiliconSoup
    @SiliconSoup 2 роки тому

    A very important method for embedded design.

    • @amrit5
      @amrit5  2 роки тому

      Yes it is 🥰😅

  • @maokai8310
    @maokai8310 4 місяці тому

    thank you

  • @user-mh3vj1yg1x
    @user-mh3vj1yg1x 5 місяців тому

    u should try full length arduino master class for beginner to help them out .. ,it would be helpful for sure

  • @mohammadrezaoveisi2480
    @mohammadrezaoveisi2480 Рік тому

    🔥🔥🔥🔥🔥

  • @Ary-lo6ng
    @Ary-lo6ng Рік тому

    taks

  • @arduinomaquinas
    @arduinomaquinas Рік тому +1

    subscribed to the channel, Like 2.2 K 👏👏👏

  • @maciejzdrojewski7345
    @maciejzdrojewski7345 Рік тому

    Thanks!

  • @cksmaya
    @cksmaya 2 роки тому

    THANK YOU

  • @raziallahverdiyev6637
    @raziallahverdiyev6637 2 роки тому +1

    Taks

  • @micah2936
    @micah2936 2 роки тому

    Wow I had no idea. I always thought an interrupt pin was necessary

  • @addibbaaj2
    @addibbaaj2 Рік тому

    This video is a godsend, thanks for the tutorial mate!

  • @susanghimire517
    @susanghimire517 3 роки тому

    Noice

  • @bencotech9141
    @bencotech9141 Рік тому

    thank you so much. the ant is searching for task 5 😅

  • @kifahzaidan4505
    @kifahzaidan4505 2 роки тому

    THANKS A LOT
    CAN YOU PLEASE POST VIDEO FOR THE (CONTROLLING OF DC MOTOR 'ACTUATOR ' PROGRAMABLE POSITION WITH MEMORY BUTTONS USING ARDUINO.
    BEST

  • @abhijitbhoir692
    @abhijitbhoir692 2 роки тому

    Can you show how to use millis with pca9685 to controll multiple servo runnig on overlapping time interval

  • @azmrblack
    @azmrblack Рік тому +1

    millis will overflow at some point (iirc 49.7 days) causing an issue of previous vs. current.

  • @enthusiasts7278
    @enthusiasts7278 2 роки тому

    it seems very useful, but it's a bit confusing for me. Sir, I wonder if I can use it with 2 codes if there is an ''if'' and ''else" statement, for example, I have combined ultrasonic sensor and water level sensor but the program seems can't run properly. Can you help me, sir?

  • @benbenameur8429
    @benbenameur8429 Рік тому

    Is there a way with the millis() for the stepper motor tourn only one revolution?

  • @lewisd56
    @lewisd56 2 роки тому +2

    using millis() works, but your code will fail after millis() is reset to 0. Another method of achieving pseudo multi-tasking is treating each task as an object containing a few methods to maintain and check an internal counter. A caveat with this is that exact timings can be a little hard to achieve. Say you want to blink an LED every 1 second, you use an object representing the LED task, within this object you have a counter variable, a checkCounter() method and a switchState() method, in your main loop, you call LED.checkCounter() every, lets say 10ms, the checkCounter() method implements the same check as you are doing with millis(), but checks its internal clock, after hitting a threshold of in this case 100, it calls switchState() and resets the counter to 0. as you add more tasks, you simply call their checkCounter() methods one after another in the loop. This avoids messy code in the loop and makes tasks self contained, making your program much clearer. Additionally, you are not having to do maths with unsigned longs, which will take far more clock cycles than a well chosen data type for an internal counter, which in some cases could just be a single byte. Using objects also lets you do other forms of multitasking, such as priority based, you can even maintain a list of tasks that can be added to providing a far more versatile multitasking environment.

    • @ikeabuchi1
      @ikeabuchi1 Рік тому

      hint 2's complements for roll ober

    • @lewisd56
      @lewisd56 Рік тому

      @@ikeabuchi1 it will still fail, the code is checking 'if greater than', it will fail at the roll over, the first iteration after the rollover will fail, unless you check the absolute difference.

  • @SamBatti88
    @SamBatti88 4 місяці тому

    Hi, does currentTime starts count when the Arduino is powered ON or when the loop si starting excuting ? Thank you

  • @mais_it2318
    @mais_it2318 4 місяці тому

    I am curious about what will happen with program, when current time variable will be overloaded. So it will be zero, when previous time is a big number.

  • @greenplayz3058
    @greenplayz3058 Рік тому +1

    hello aryal brother

  • @zubble7144
    @zubble7144 5 місяців тому

    Your code may creep, should the accumulation of run times of the other tasks cause your timer to advance 2 ticks in one trip of loop(). Instead of global prevTime, use prevTime_T1, prevTime_T2, ..., initialize each in setup. Then each task should compare currentTime minus its own prevTime_Tn > its own interval to trigger task code. AND last part of task advances its prevTime_Tn by its interval (iow not set to currentTime). If you desire for the code to be a bit pickier, get currentTime before each task filter.

  • @4000phil
    @4000phil Рік тому

    Clear, simple, effective. What software did you use to create the explanations, for instance at 5:31 when you show the elapsed time. thanks

    • @amrit5
      @amrit5  Рік тому

      Generated with python using opencv

  • @Sekhar_Home
    @Sekhar_Home 2 роки тому

    Very nice explained boss.. i will ask some queries regarding my project on ur mail.. pls resond it.

  • @teamwinston2902
    @teamwinston2902 11 місяців тому

    bro you have explained very well can i get your help in something ?. i have a timer which operates with 4 buttons and i have function in a loop which will run for 40 seconds . and now i want that my timer and my loop function runs together at same time . can i do that ?

    • @martinkuliza
      @martinkuliza 9 місяців тому

      "and i have function in a loop"
      You mean you have a Loop IN A FUNCTION
      YES YOU CAN DO THAT
      However, instead of killing yourself with Arduino
      Why don't you pop over to ESP32
      Learn about Multi Tasking thefollowing FREE RTOS COMMANDS
      xTaskCreate (Focus on this)
      xTaskCreatePinnedToCore (This is popular but over rated but sometimes useful)
      if that alone doesn't help you , Learn about
      Queues
      Semaphore
      Mutexes
      See, Unlike processes in Arduino, In ESP32 You don't do this...
      void setup()
      {
      }
      void loop()
      {
      }
      Instead you do this
      void setup()
      {
      }
      void Function1()
      {
      YOUR ONE TIME CODE GOES HERE
      for(;;)
      {
      YOUR LOOP CODE GOES HERE
      }
      }
      void loop()
      {
      }
      AND YOU CAN CREATE AS MANY FUNCTIONS AS YOU WANT
      AND EACH FUNCTION CAN BE ASSIGNED PRIORITY with the following line
      xTaskCreate(Function_1, "Function 1", 2000, NULL, 1, &Function1 );
      The priority is the "1"
      this will allow you to dictate which programs runs first, second or at all
      so long as you understand THE TASK STATES OF RTOS
      www.freertos.org/RTOS-task-states.html
      Your problem is greatly simplified if you use ESP32 and FreeRTOS
      In Arduino Functions run BY DEFAULT Sequentially
      In ESP32 BY DEFAULT
      Assuming all Functions are set to the same priority
      THEY ALL EXECUTE AT THE SAME TIME
      There is nothing for you to set
      LOL

  • @liamstone3437
    @liamstone3437 8 місяців тому

    The one thing I did not catch was how the input of 255 typed into the serial monitor was able to change the value of led brightness.

  • @thierrybeaulieu4403
    @thierrybeaulieu4403 2 роки тому +3

    Yo I might see a problem with this technique. The way that millis() works is that it's going to use ISR: Interrupt structured routines. Every 1 millisecond, an ISR routine is going to be launch and a timer is goign to be incremented. However, aren't we limited by the a maximum amount of millisecond that an interger can take? Every approximately 65 000 millisecond or 65 secondes, the program would crash because the timer would restart

    • @mihaiocnaru5260
      @mihaiocnaru5260 2 роки тому +3

      There's no problem with it
      everytime the counter reaches it's MAX_INT it rollover to 0 and continue from there
      No code crashes

    • @akirchner3
      @akirchner3 2 роки тому +6

      @@mihaiocnaru5260 No code crash problem, but when millis() rolls over to 0 the comparison of the current value of millis() to the pervious will fail to work as intended

    • @StanleyPinchak
      @StanleyPinchak 5 місяців тому

      ​@@akirchner3depends on how you do the comparison. Unsigned integer types in C++ have wrapping overflow semantics. This means that additions that overflow and subtractions that underflow can still give the correct answer as long as you work with delta t and not absolute t values.

  • @luciferreficul1926
    @luciferreficul1926 3 роки тому +1

    Very cool! One very minor issue in your demonstration from 5:28. Maybe you intended for >= ?

    • @amrit5
      @amrit5  3 роки тому +1

      Thank you for letting me know. I didn't notice that. It should be >=

  • @kkcsynzx6250
    @kkcsynzx6250 Рік тому

    How to get different PWM speed Outputs from different pins

  • @remi19999
    @remi19999 2 роки тому

    Can I use this method when the processes depends on each others and starts if the user sends signal ? Like the user will send signal to activate some continuous servos as chosen by the user (each servo has its own delay) and when the servos start rotating the DC motors will work as well.

    • @amrit5
      @amrit5  2 роки тому

      Yes it will work even when processes depend on each other but having a delay on a process should be avoided for proper functioning.

    • @remi19999
      @remi19999 2 роки тому

      @@amrit5 Actually I understood and tried it , it works but not as I want because my program depends on the user so I want to make constats of time provided by the function millis() because the millis starts counting when the arduino board is on not when the user send the signal to activate the motors ... but its not possible inside arduino loop funcrion to save the current value of milli time. I am thinking of a solution to save the time inside the loop so I can run the DC motor after the servo complete one rotation using the solution you presented.

  • @karenhammon8410
    @karenhammon8410 9 місяців тому

    Another way is to use one delay at the bottom and count the number of cycles of the loop function.

    • @amrit5
      @amrit5  6 місяців тому

      Nice hack

  • @frosty1433
    @frosty1433 5 місяців тому

    Just use interrupts

  • @danthor45
    @danthor45 Рік тому

    i dond do many dasks ad same dime.

  • @VoeViking
    @VoeViking 2 роки тому

    I use Metro.h instead of millis

  • @salc9593
    @salc9593 Рік тому

    Hello Amrit Aryal, thank you for posting this video as It's been helpful towards my understanding of Arduino coding. Question: I would like to blink the 1st LED 5 times - for (int i=0; i

  • @kythuatphanmem3078
    @kythuatphanmem3078 Рік тому

    8:00 task 3

  • @jankesik
    @jankesik 2 роки тому +1

    I see one problem :) you don't tell how to fix the max ~25 Days working Error :)

  • @dallas_barr
    @dallas_barr Рік тому

    9:50 There was LITERALLY a bug in your system ! 😀

  • @codewithdaniel-1
    @codewithdaniel-1 Рік тому

    Just use freertos easy and free

  • @RanaRao_Chandrachur
    @RanaRao_Chandrachur Рік тому

    Professor, I have a request, sir 🙏, there are a lot of tutorials about atmega, Arduino and ESP8266 but *what about AT89s52 [8051 families]??* the AT89s52 is a very basic microcontroller that we read in our college,
    and my problem is "I'm making a digital clock [7-segment] using AT89s52 (NO RTC) but the time drifts about 5.6 seconds in every hour!! and this At89s52 microcontroller doesn't have any function like millis() inside AT89s52's IDE(Microvision Keil software), and a book suggests to play with the ppm and fix the error.But, yet the problem is At89s52 is not like Arduino , so Professor, I need your help, can u please make a dedicated video on this?? so that everyone will learn a lot, or u can also help me by writing about the solution below 🙏"
    BTW I'm using a 16MHz crystal with this microcontroller and using timer_0 to generate a 25ms delay and using interrupt_1 to count that 40times so that there will be 1 second completed, but that's not the problem I guess.. I just need your help.. .🙏🙏

    • @martinkuliza
      @martinkuliza 9 місяців тому

      Instead of coming here for the answer
      WHY DON'T YOU GO TO THE ARDUINO FORUM ?
      I also have some advice for you if you go there
      1. THEY EXPECT YOU TO DO YOUR OWN WORK AND RESEARCH THERE
      2. They don't like it when you are in school or Uni and say
      "I have this project...........what's the answer ?"
      We are not there to do your work for you
      We are volunteers on the site
      WE ASSIST YOU........ We don't do the work for you.
      Remember that important point and you'll be fine
      3. When asking a question follow this format
      - Introduce yourself briefly
      - Explain what Hardware you are using and What IDE and Version you are using.
      - Briefly describe the project
      - Explain your problem IN DETAIL
      - EXPLAIN WHAT YOU HAVE DONE SO FAR TO TRY TO FIND THE SOLUTION.
      (if you skip this part, you won't have a pleasant time on that forum) doing this DEMONSTRATES you have done something , and you can't lie because we can tell if you're lying, so make sure YOU ACTUALLY HAVE DONE RESEARCH
      - Post your code USING THE CODE BUTTON, do not just post it to the forum
      (if you don't know how, Ask the forum and they will tell you) there is a button at the top called /Code/ Press that .
      - Provide a schematic of your project, even if it's hand drawn.
      Don't skip this as they will demand it before you get any answer .
      If you do those things, you'll get a lot of assistance
      if you don't you'll probably get told "we don't do your homework for you"
      also, if your code was written by an A.I. DO NOT POST IT, they hate that .
      But coming here to get the answer is not the right thing to do

    • @RanaRao_Chandrachur
      @RanaRao_Chandrachur 9 місяців тому

      @@martinkuliza U wrote these much words for me, Just to help me. 🥺🥺 OMG, u r such a kind and nice person, who gave his time to guide me.
      Thanks brother ❤️❤️❤️
      Love u from India ❤️

    • @martinkuliza
      @martinkuliza 9 місяців тому +1

      @@RanaRao_Chandrachur
      "U wrote these much words for me, Just to help me."
      YES I DID
      "OMG, u r such a kind and nice person, "
      YOU'RE WELCOME, THANK YOU
      Question : Why are you using AT89S52 if that's the problem.
      is it a course parameter that you need to use this architecture.
      if yes... WHY ? What's the purpose of doing it
      if your'e allowed to use another board, i would suggest not Arduino but ESP32 Wroom
      But if it must be that, then 1 thing you can be certain of is this...
      THE LECTURER WILL KNOW THAT A SOLUTION EXISTS
      therefore it can be done
      The lecturer will have a lesson they want to teach you, Know what the lesson is and you'll be closer to the solution.

    • @RanaRao_Chandrachur
      @RanaRao_Chandrachur 9 місяців тому +1

      @@martinkuliza Actually yes, I was learning At89S52. And I got the solution, I will use RTC using I2C interface. There was a solution with the interrupt and using good crystal but they are not even giving decent results, so I decided to use a RTC ds3231 that is temparature independent, means it automatically resolve it's frequency drift based on inbuilt temperature sensor.
      Yes Esp is the best option as it syn using internet.
      And once again Thanks brother stay safe, healthy and happy ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️

    • @martinkuliza
      @martinkuliza 9 місяців тому +1

      @@RanaRao_Chandrachur
      You're Welcome...
      RE
      "Yes Esp is the best option as it syn using internet."
      I actually wasn't referring to the internet feature of it... but.. Yes you can do that as well