Arduino Event-Based Programming

Поделиться
HTML-код
  • Опубликовано: 19 июл 2016
  • In this inaugural episode of the Tinkerer's Toolbox, I am showing a better way to program Arduinos using the Eventually library. This tutorial shows what is wrong with the traditional method of Arduino programming, and how Eventually can save you from the awful code-mess that plagues all but the simplest Arduino programs.
  • НаукаНаука

Комментарии • 271

  • @fjonesjones2
    @fjonesjones2 6 лет назад +15

    Being a newbie to programming, it's great to see different methods used, to arrive at a similar basic outcome. Thank you for your time and effort. Nice video mate.

  • @inspiredtiny
    @inspiredtiny 4 года назад +25

    The classic blink code is for those who have no idea in programming or microcontrollers. It is simple enough to be easily understood and have them interested.

    • @notanigerianprince7011
      @notanigerianprince7011 Год назад

      Sometimes, it's also used to test if the device is broken.

    • @nichtverstehen2045
      @nichtverstehen2045 11 месяцев назад

      @@notanigerianprince7011 that would be pretty weird way of doing it as it requires extra hardware. you don't need a led stuff to test a device. it's like to test if your car would start you plan a trip making whole family ready for it :)))

  • @MGL83
    @MGL83 4 года назад +10

    Just use interrupts. It's way simpler.
    Your event loop thingy makes it way more complicated than it needs to be. The event loop is still polling over all possible events, so you have delays and inneficiencis and possible other timing issues. With interrupts it's 1 line to attach a function to a pin, so the function triggers when button is pressed. Bonus that it works on rising or falling edge, so much less issues with debouncing.

    • @fallnx3828
      @fallnx3828 9 месяцев назад

      Interrupts are not viable for everything, the button was example but he was demonstrating the principle

  • @favesongslist
    @favesongslist 4 года назад +1

    I wrote something very similar, integrated with MQTT ; your version has given me food for thought. Well done.

  • @3dw3dw
    @3dw3dw 7 лет назад +6

    That's fantastic. Can't wait to use this library. I want to use a shift registers to scan through the states of various (numerous) inputs from a very few pins on the arduino. I hope eventually will help simplify this process and give my code the elbow room of a c++ environment.

  • @Deemooo
    @Deemooo 7 лет назад +5

    This could be really helpful for my midi instrument project! Thank you

  • @AccidentalScience
    @AccidentalScience 6 лет назад +1

    May I link your video in the description of a my recent video where I show a event-driven (and RPC) framework originally designed for devices that are slightly different from Arduino? I think your example at the beginning is useful to understand how messy can become programs in sequential execution.
    By the way, interesting library the one you have made. It seems that your listeners are related to fixed features such as time and input changes, do I have understood correctly?

  • @leeaustex2670
    @leeaustex2670 4 года назад +1

    Oh, and this looks awesome! I can't wait to try it out!

  • @realsoftgames7174
    @realsoftgames7174 5 лет назад

    thanks for sharing this ill be looking at implementing it into my project. is there any documentation for this library floating around anywhere i would like to look more into it as i plan on using it as a transmitter/Reciever for an ESK8 Board.

  • @salehroueimiab2199
    @salehroueimiab2199 3 года назад

    Event driven absolutely makes sense here. Thanks for filling the gap!

  • @TatsAndGraphics
    @TatsAndGraphics 6 лет назад +2

    Thank you for taking the time to show us the difference between this way and the "old way". For those of us just starting out it really helps.

    • @bob-ny6kn
      @bob-ny6kn 2 года назад +1

      Using header files and APIs might make YOUR coding "easier" but you lose exact control, increase bloat, slow execution time, and need to learn a one-job set of functions useless in your next project. Start learning as low-level as you can so you know the foundation of what you are building. BTW; in the "old way" we calculated RC time constants to create astable multivibrators using a battery and a few discrete components. We also learned not to make it look like a rat's nest. Neatness counts.

  • @thomasweyermann5848
    @thomasweyermann5848 4 года назад +2

    Thank you! This is exactly what I was looking for!!

  • @RoySATX
    @RoySATX 5 лет назад +1

    Well, that was a special treat! I have to admit that I only actually watched the first 90 seconds before opening a new tab and continuing my work. I continued to listen, however, and every so often I would check back in on your video out of curiosity thus inserting delay after delay in my normal workflow, and with each loop came an increase in variables I struggled to fill much less understand. On and on, over and over and over until finally, eyes glazed over, one eyelid slowly blinking, I exited abnormally.

    • @jwcolby54
      @jwcolby54 4 года назад

      You ran out of stack space. 😁

  • @gconol
    @gconol 5 лет назад +15

    Oh god, this went over my head .......

    • @MGL83
      @MGL83 4 года назад +2

      Don't get discouraged. He made it way too complicated. Just look up interrupts. It's literally 1 line to solve the problem from 1st example.

  • @drumminjeff71
    @drumminjeff71 3 года назад +1

    I absolutely love this code. I'm building a wave maker for an aquarium using this setup and it's working fine. I wanted to add in another pump to run at different times so I created another time listener. The problem is the second time listener I created will not operate at a slower speed than the first operator for some reason. I'm going to post my code eventually but I'm having problems figuring out how to add more time listeners.

  • @tb303wpf1
    @tb303wpf1 11 месяцев назад

    I was a wizard with Basic and qBasic back when I was in college. That said, it was a long time ago.
    Switching from Basic to C++ is actually not too difficult. The core control structures and alot of the strings/variables are very similar.
    It's really awesome to see guys like this show better and more intuitive ways of coding for Arduino specifically. Clearly the OP knows C++ inside and out. This is making my transition to modern coding super fun and exciting for me.
    Thank you for sharing your knowledge and experience sir. Much appreciated!!! Great video!

  • @TraceguyRune
    @TraceguyRune 5 лет назад +2

    This may be the answer to my prayers. The one thing I hated about programming for the Arduino vs computer software was everything was stuck in a loop, so button events couldn't be accessed unless the button was pressed at the right time.

    • @featherbrain7147
      @featherbrain7147 5 лет назад

      Surely there is nothing stopping you using sub-routines (functions) which are outside Loop? The "main" part of any C program is a loop isn't it? It calls subroutines when things happen.

  • @thowsawi
    @thowsawi 6 лет назад +1

    Thanks a very good explanation for those asking why the not been written before this for make since as the writer explained in line what he is doing and how to think
    So this is mor about how to develop the code
    Thanks a lot

  • @SusanAmberBruce
    @SusanAmberBruce 2 года назад +1

    Awesome, I just completed a project that's an environment controller for plants, it measures temperature and humidity and switches on a fan, a heater, and lights according to different conditions.
    I wanted to keep the user interface simple using four buttons and a 1602 display to display time and date aternating with temperature and humidity while no button is pressed, and then on a button press, to go through 13 different menus to set parameters.
    It's been a real challenge from the point of view of updating the displays and reading and debouncing button presses all in the same loop.
    Now I have downloaded your library I am planning a rewrite of my code using Eventually, I should now be able to incorporate some new features based on Eventually that will make the project super awesome, so a big thanks.

    • @taka4059
      @taka4059 2 года назад

      Hey, there, any updates? How did it go?

  • @pperrinuk
    @pperrinuk 6 лет назад +6

    Good stuff.
    Any 'bloat' from using libraries should be cleared out by the compiler, so criticisms about that are irrelevant - if people want the developer to watch every byte, then they should be using assembly language anyway!
    I see there are a number of event libraries out there, but yours is the first I have looked at and your video shows you are clearly thinking about the right issues and explaining them, so I shall be giving it a whirl.
    Thanks!

  • @byronwatkins2591
    @byronwatkins2591 5 лет назад

    So, how might one update a display, check for serial port activity, etc. that one normally does in 'loop()'?

  • @rudolfst
    @rudolfst 2 года назад

    Really great library. I'm going to use it tomorrow! Thanks!

  • @EcceBestia
    @EcceBestia 3 года назад

    Just stumbled upon this. I'll try it out, eventually 😜. Great work.

  • @bassome3000ify
    @bassome3000ify 4 года назад

    This is till to awesome even in 2020, thx BPL for sharing

  • @Drew_pew_pew_pew
    @Drew_pew_pew_pew 5 лет назад

    Great video. One question: can you still use a loop routine in your sketch?

    • @francescomoggia9801
      @francescomoggia9801 3 года назад

      void loop() {
      // run Eventually loop
      mgr.loopIteration();
      }

  • @KC-vp7wn
    @KC-vp7wn 3 года назад

    Very cool!
    I'm gonna try this on my next project.
    Thanks for simplifying things!

    • @mathiaspampus813
      @mathiaspampus813 3 года назад

      You mean 'overcomplicating things'...
      He's obviously doing it wrong in a lot of places, before advertising his library. I just wonder wether he really doesn't know any better, or he does it on purpose, to make the code especially bad...

  • @kayrizob92
    @kayrizob92 4 года назад

    Does this method work to fade an led or run a for loop/ PWM, controlled by a button press?

  • @etmax1
    @etmax1 3 года назад +1

    Thanks, this lack of event programming is why I've never used that Arduino programming system before. Without events it remains a toy.
    Do you have an example of how to create event type libraries that you would be willing to share?

  • @shrikantnikam2426
    @shrikantnikam2426 4 года назад

    Is it possible to make millis function in separate tab and use millis single line command like delay? For make code more simpler

  • @Graham1904
    @Graham1904 4 года назад

    Looks great but why have you the expression stop Blink in the startBlink function?

  • @Astaldoath
    @Astaldoath 7 лет назад

    This is so much better than the way arduino uses code, man ive programmed in C and C++ VB , scripting languages and having only a main and a loop function sucks, what about making your own, what if i dont want something looped everytime. Im glad you wrote this library, keep up the grat work

  • @jimhagan203
    @jimhagan203 4 года назад

    HI just watched your video and enjoyed it. I will download the files and try it. Thanks

  • @nuno.picado
    @nuno.picado 3 года назад

    Can I like this multiple times?
    God, clean code is beautiful.
    I'm starting with Arduino for a personal project, and I was dreading the delay function. For someone used to OOP, this was painful.
    And then RUclips suggests me this video...

  • @liboradamec7451
    @liboradamec7451 3 года назад

    Is there some method for listening during the running cycle like FOR or WHILE, or it is necessary to use an interrupts on Arduino pins?

  • @MusicLife1952
    @MusicLife1952 4 года назад

    cool,can you make with a 20x4 lcd?, make a sentence with the button and run the command to turn on the LED, and same command for another LED

  • @robm3357
    @robm3357 3 года назад

    This was cool
    Is there anyway to define some variables and then change there value using Ethernet
    Basically I want to assign a few preset variables and then be able to change them over the internet.
    Think of a lock code, or codes....
    Event driven would be good as there could be locks in use while the variables not in use are changed.....
    Any thoughts?
    Thanks Rob

  • @WtF-ki9vp
    @WtF-ki9vp 4 года назад

    This library has a problem with SHT3X (temperature and humidity sensor) library. It does work sometime but mostly will display 130 C.

  • @ManojTripathi8867
    @ManojTripathi8867 6 лет назад

    i am following your code simultaneously on sketch but it gives error

  • @abnerhagelsieb
    @abnerhagelsieb 6 лет назад

    How can you adjust the blinking intervals? I mean if I want the LED to remind on for longer how would you adjust that?

    • @ccv3237
      @ccv3237 4 года назад

      Those time numbers are milliseconds ON or OFF (High or Low), so you can easily change those time variables.

  • @agnichatian
    @agnichatian 3 года назад +1

    This is a nice effort. Are you using a different platform these days ?

  • @gerrekurquidez3044
    @gerrekurquidez3044 4 года назад

    I have 2 questions;
    1. How do you write a program to create a double click function on the button to have the motor turn a certain amount of degrees, hold it as long as you hold down the button, than rewind back the exact way when you release it?
    2. Could and how do you program/solder that circuit into smaller arduino models?

  • @ElectroMentor
    @ElectroMentor 3 года назад

    wonderfully Explained dude all-time best 😍

  • @ChrisWilliams-pu8pj
    @ChrisWilliams-pu8pj 4 месяца назад

    Thank you! Great video with great functionality!

  • @jitendracshah
    @jitendracshah 4 года назад

    That is the correct way to use it. I use the same technique to do event functions, the advantage is I can change my mind and interrupt the event before its timing finish. Delay puts machine in freeze stage where nothing can be interpreted while event reading is mostly cloak speed and loop dependent.

  • @JamesHardiman01
    @JamesHardiman01 5 лет назад +2

    Brilliant! I've been losing sleep over how to implement this! And I'm glad you took your time explaining it: some of us have brains that have a lower clock cycle than they used to!

  • @mrdrgonzo
    @mrdrgonzo Год назад

    Sorry about the question but I’m completely new to programming, in your eventually demo, you tell it to blink but where in the code is the time which you define the blink timing?

  • @rubertostutzer
    @rubertostutzer 3 года назад

    Congrats! This is very good!

  • @jjfoerch
    @jjfoerch 5 лет назад

    Great library! Thanks!

  • @semirdzhyan
    @semirdzhyan 11 месяцев назад

    This could come in handy. Thanks.

  • @Haisam1974
    @Haisam1974 7 лет назад +1

    Have you used eventually with LCD 's and menu system on arduino ?
    if you ever do , a tutorial would be great....
    Eventually reminds me of java ...

    • @BPLearningTV
      @BPLearningTV  7 лет назад +2

      I need to do that. I haven't had a lot of time to tinker lately.

  • @btomas225
    @btomas225 3 года назад +1

    I can see some problems with this scheme and that is the execution time of the listeners themselves and the eventual call of the function as a result of an event.
    If the events are occurring at a rate that's discernable by eye (blinking led) then the execution time of the library routines will be negligible because the events are occurring relatively slow but if events occur very fast, say in the microseconds or milliseconds then the listeners may have trouble reacting in real time....So they're useful if one keeps that in mind.

  • @AriesBreath
    @AriesBreath 3 года назад +1

    Hello, I'm new to arduino and I find your library really a life-saver, but I would really like to be able to delete a single listener instead of resetting the entire context (all the listeners), how can I do it?

  • @bloodyMind4
    @bloodyMind4 3 года назад

    That's beautiful!!! thank you!

  • @philsaudio6mm
    @philsaudio6mm 6 лет назад

    Is the final Eventually code example 2-3x larger than the messy original code?

    • @BPLearningTV
      @BPLearningTV  5 лет назад

      Yes - the library itself takes up a decent amount of space.

  • @fleshTH
    @fleshTH 7 лет назад +3

    I like the idea, but the non-event code when completed (minus debounce and not very well optimized) was 3% of storage, but the just the setup for the event code was 5%... without actually doing anything.

    • @AccidentalScience
      @AccidentalScience 6 лет назад

      When you are close to zero (3%) it's easy to jump to 2% more, adding antibouncing that would likely take 200 bytes once compiled will bring it to 4%.
      Even-driven programs have to pay for the burden of the underlying event handling system, but they benefit when the programs become more complex.

  • @mj2906
    @mj2906 4 года назад +6

    I think would be great thing if you could make tutorial about creating your eventually library. This would be perfect introduction of concepts for event based programing in others languages like c#.

    • @BPLearningTV
      @BPLearningTV  4 года назад +4

      That's a great idea! I will try to get that done soon. It would also be good to teach people how to make an Arduino library available.

    • @mj2906
      @mj2906 4 года назад +1

      Sure, looking forward for it!!!

    • @variouslifedjak426
      @variouslifedjak426 4 года назад +1

      I would love a video that goes into your library a little more and more examples of usage.

  • @leeaustex2670
    @leeaustex2670 4 года назад +3

    I think you could take your blink example one step further. replace blinklight() with a blinkOn() and blinkOff() listener, have them call each other, and set false so it only runs once. Then you don't have to keep that blinkState or have the "if" logic that is currently in blinklight()

  • @michroz
    @michroz 2 года назад +1

    What I am worrying about is that we basically ignore the very first buttonpress and the whole bunch of the bouncing transitions. We consider the button has been actually pressed only _after_ the bounces are over plus some extra delay to be sure. (So in the hypotetic case when the button contact is poor we could have a significant delay or even miss the button press completely!)
    However at the very first transition (despite the bouncing that follows) it is _already_ pretty clear the button _has indeed_ been pressed. So we may want to react as soon as possible and only get rid of the _following_ jitter!
    What I would do is to react immediately on the _first_ transition and then just ignore the following transitions for a certain period of time. Never thought of doing this with a state machine though. Just check for millis() inside the loop.

  • @TatsAndGraphics
    @TatsAndGraphics 6 лет назад

    In the example code I do not see where serial.begin is initialized or where the baud rate is set. Is this predetermined in the library?

    • @digiay
      @digiay 6 лет назад +1

      TatsAndGraphics He didn't use the serial monitor nor a serial hardware(as far as I can remember). Therefore he didn't have to begin serial communication.

  • @ourchannel8215
    @ourchannel8215 5 лет назад

    hello master..try creat for 433mhz to control 4 servo

  • @dailydriven
    @dailydriven Год назад +2

    You made it a little more complex. It's actually easier then that. But nice to see it a different way. Yes event programming is great. I guess I'll eventually use your method someday. 😆

  • @jackdaniel8269
    @jackdaniel8269 5 лет назад +1

    Hey, Phew! Are you you trying to dissuade me? Hell, that was a MINDFULLL. But thanks for the knowledge.

  • @TrueDetectivePikachu
    @TrueDetectivePikachu Год назад

    I don't know if the thread here is still active...
    I've been having some issues trying to fire an event right after another event, basically the act of turning on an LED, wait for a moment, then turn it off and turn on another LED of another color. Here's the catch tho, the time where both LEDs are on is different, so it should be two different events right? well, i tried that and what I end up is with two events at the same time. You could say "well use delay()" without realizing that delay will literally freeze the program for a given time and not allow the interruption of the event during the delay. So how can I make two events where one depends on the other to end in order to trigger?

  • @hairankunhaqaiq8108
    @hairankunhaqaiq8108 4 года назад

    can anyone help me in controlling a motor that is for a specific time i want it to turn on and also taking some inputs from sensors to turn it on but specified time period will not affect when it is on due to a sensor output but after sensor is done the specified time period should start whee it ended . Regards

  • @swapnilbandgar8730
    @swapnilbandgar8730 3 года назад

    Please help me :::::
    I want to start my loop only when my Ultrasound sensor detects the object
    and if the object is not present then it should directly stop all the operations until the ultrasound sensor detect another (different or same) object

  • @RogerJonker
    @RogerJonker 4 года назад

    Thanks for charing...

  • @TraceguyRune
    @TraceguyRune 5 лет назад

    I am using EvtPinListener with a PULL_UP button. I'm not sure if that is a cause, but the event only actives when I let up on the button. How can I keep the event going as long as I have the button pressed?

    • @TraceguyRune
      @TraceguyRune 5 лет назад

      I gave up on the whole event thing. I put everything back into a loop and did my own debounce checks. The current project I'm working on does fine in the loop. Plus, your program was causing my Arduino to crash. It hasn't crashed and is working a lot more efficiently in the plain old loop.

  • @dkryptonut
    @dkryptonut 4 года назад +4

    Is there any advantage to using this library over say, using an interrupt? Thanks.

    • @BPLearningTV
      @BPLearningTV  4 года назад +3

      The primary one is that it merges different types of events (time, pins, and complex events) into a single unified framework that is more intuitive than the standard one. The specific help that you would get compared to an interrupt is automatic debouncing.

    • @dkryptonut
      @dkryptonut 4 года назад

      @@BPLearningTV Great, thanks! I can see how this would be very useful!

    • @toysareforboys1
      @toysareforboys1 4 года назад +2

      I've been abusing interrupts a lot! I love them! They do exactly what I want when I want. Screw debug. There is no code in my "loop" :)

  • @lcepeda
    @lcepeda 3 года назад +1

    Hi, Thanks for the great tutorial.
    I am new to Arduino and as well to C++ code, but after spending about a month watchin tutorials I believe I can learn this fast. Now the reason I comment is not only to say thank you but also want to ask a favor if even possible.
    I work for a Laser (Optic) company An I have built electronic mechanical stations to check laser stability and save data to an excel file, well I have been thinking about doing the same with Arduino and some codes all I need to do is to check 3 monitors from the laser (voltages in the scale of 0.5VDC to 4VDC) in the 3 monitors I need to set alarms based on the Voltage, e. g (V1 is set a max of 2.2V) if the voltage exceed this number I want to trigger an alarm or else do nothing, when an alarm is triggered I need to be able to identify which event caused the alarm by a code or by turning an led which will be labeled accordingly and so on, same for the other two monitors. all this will also turn a pin off which turns off a relay, the relay will turn the laser of by interrupting a signal, after 1 second will turn a second relay off to turn the housekeeping supply and a third relay will be interrupted the same way to cut main power to the laser. I have pretty much everything documented, so if you or somebody in the group could give me a hand it would be greatly appreciated.
    Thanks

  • @jaydekaytv
    @jaydekaytv 11 месяцев назад

    Hi, there's a bug in this library. Adding "false" to create a single, no-repeating function call doesn't work. It calls repeatedly (very quickly). Can you please provide some advice on executing a single function call that's delayed? I'm using eventually in a larger project, and have also tested and confirmed this issue by altering the simple blink example included with the library. Thank you.

  • @bismuth4224
    @bismuth4224 4 года назад

    i wonder if there are a time spent on addition for if its a loop then if you add 1 a variable then something would check if it have meet for example 1000 then turing it off reset then turn it on and between the loop it have a checker if it have a input .... im sorry im new to this i haven't even have a arduino before hahaha

  • @qzorn4440
    @qzorn4440 3 года назад +1

    Geee, i thought the arduino ide would of had the original just getting started theme; to more bells and whistles for advanced programming in C++? nice video and fantastic info...:)

  • @kenatsharaby
    @kenatsharaby 4 года назад

    Nice work!

  • @oscararguello9009
    @oscararguello9009 5 лет назад

    it is just fine, great job.

  • @Tony770jr
    @Tony770jr 7 лет назад +2

    I like it...

  • @frankt9156
    @frankt9156 Год назад

    So the program can run about a month before it is overflowed ?

  • @taloot123
    @taloot123 4 года назад

    high quality class

  • @hungryman54321
    @hungryman54321 5 лет назад

    Hi I'm late to the party, I don't understand your first if statement "if(isblinking)" there is no comparison so how does this even compile? And since it did compile, what did the code actually do

    • @interestedinstuff1499
      @interestedinstuff1499 4 года назад

      The if statement evaluates what is in the brackets. If will do whatever if the statement evaluates to True. So if 'isblinking' is already true then the statement if(isblinking) is the same as if(True). Since True will evaluate to True, the stuff inside the If will run. It is like saying If(1). You don't have to say If (1 = 1) where that would be True because 1 and True are the same thing. So if(isblinking) is the same as If(True) for when isblinking is True. (The opposite when isblinking is False in which case if(isblinking) would then evaluate to False)

  • @jwcolby54
    @jwcolby54 4 года назад +1

    In event driven programming, something raises an event. Zero to N things respond to that event. I think of events like a radio broadcast. The DJ is talking but there can be millions of listeners, or none. Any one who is listening can do whatever they want with the broadcast.
    A user presses a button on the handle of a white cane, hooked to an arduino. Doing so causes a pin on the arduino to change state, and generates an ev_Btn_Pressed event. The event is "hooked" in various places in an "event handler". Hooking an event simply means that the event handler hook (a function) will be called when the event fires. So...
    My code hooks the button pressed event and runs logging code, logging the date and time that the button was pressed. That is a valid thing to do when a button is pressed. That is one event handler, and it does some specific thing in response to an event (button pressed).
    Another event handler hooks the same button pressed event. This event toggles an LED, turning it on if it was off and vv.
    Notice that these two responses to the button being pressed are not related. Logging the button being pressed doesn't need an led to toggle, and the led toggling doesn't need the button pressed to be logged.
    I have a third event handler hooking the button pressed event. This event handler pulses an ultrasonic sensor, initiating an external device to try to discover how far away something is. This event handler sets up another event generator. The ultrasonic sensor will raise a pin high when it receives a reflection of the ping.
    Raising that pin high generates a ev_ping_rcvd event. Zero to N event hooks may or may not respond. IF and only if I hook the event one of my ev_ping_rcvd event handler logs the date / time / distance for the ultrasonic sensor. Another event handler grabs the ev_ping_rcvd event and tells the controller that we are about to crash into a wall, thus the controller vibrates the handle of the cane the blind person is using to move in the world, and generates a tone describing the distance to the wall.
    Notice that logging the ultrasonic event and vibrating the handle are independent responses to the ev_ping_rcvd event. Neither of them "depends" on the other.
    As the developer of the cane, I can turn on logging with a boolean and voila, the event handlers which log stuff will magically log the events in the logging event handlers. The other event handlers neither know nor care whether event logging is on. The event logging handlers neither know nor care whether the other activities are happening, or indeed even what those other activities are.
    OK, so this is a totally made up scenario but it demonstrates how and why we would use events. It demonstrates that events are generated by something, and the events may or may not even be hooked, but if they are, they call one or more event handlers which perform functions logically unrelated to each other.
    All that said, my problem with the demonstration code in this video is that it was difficult for me (the developer) to figure out how event generation happened. What triggered the event(s) and how do I, the developer, make that happen? Then how do I hook the events that I am setting up to happen?
    Event driven programming allows me to initialize one or dozens of events to be generated. It then allows me to respond to those events in one or multiple ways. It allows my processor to generate events and respond to events instead of sitting in tight loops reading pins etc.
    I want this capability. Ping 5 ultrasonic sensors. Go on with what I am doing. When the reflections start to come in, handle each one in an event handler for that sensor. Set up events for proximity sensors. go on with what I am doing. If one of the sensors fires, handle the event. I deal with events if and only if that event actually occurs instead of looping to read whether or not something is happening, or waiting for something to happen. If any given event never occurs, I waste zero time sensing that thing.
    Yes please.

  • @kalani1963
    @kalani1963 4 года назад

    Could i use this to program a heart monitor and set an event to trigger a sms when heartrate reaches a certain bpm?

    • @monggos
      @monggos 4 года назад

      yes of course, there is a breakout/module for that sensor.

    • @kalani1963
      @kalani1963 4 года назад

      @@monggos would you happen to know the name of that?

  • @robotikatolye7728
    @robotikatolye7728 5 лет назад +2

    you can simply "int tmp = digitalRead(ledpin); somedelay ; digitalWrite(!tmp);

    • @MusicLife1952
      @MusicLife1952 4 года назад

      can you make with a 20x4 lcd?, make a sentence with the button and run the command to turn on the LED, and same command for another LED

  • @errrzarrr
    @errrzarrr 5 лет назад +5

    Also, you declared your unsigned int variable (curtime) inside your loop. Do this at very beginning of your code instead.

    • @94valeRa01
      @94valeRa01 4 года назад

      No, it's correct like he wrote it. Try it like ur saying to see why it wont work :)
      This guy wrote an event library with classes and casts and function pointers.. do you think he'd make that mistake? 😄

    • @andrewcichetti555
      @andrewcichetti555 2 года назад +1

      @@ParabolicLabs Bingo. "Look, my code is shorter!" and less efficient. This video is all about using as few lines as possible, not efficient (or clear) programming. I'm surprised they didn't put more into libraries to make it even shorter.

  • @Alfakillen
    @Alfakillen 2 года назад

    Nicely done.

  • @dawoodips
    @dawoodips 3 года назад

    Plz tell me code if I want turn on the buzzer for only 10 seconds after reading then it should off automatically .

  • @cadillacescalade5428
    @cadillacescalade5428 2 года назад

    Hi. I'm a beginner to arduino an still learning I'm watching videos here on RUclips.
    But I had a question, if you could help me out on a code/ Sketch I am trying to put together a sketch for a Crossing bell for a Model railroad.

  • @NicksStuff
    @NicksStuff 5 месяцев назад

    Cool but 3 kB to blink an LED, though
    How does it scale with a more complex program?

  • @browaruspierogus2182
    @browaruspierogus2182 6 лет назад

    So instead of threads the timer is used. I wonder how the delay() formulas look like under different boards. Normally CPU should not execute any instructions and perform like a sleep() in multithreading apps.

    • @AccidentalScience
      @AccidentalScience 6 лет назад

      Absolutely no. Even in multithreading apps the CPU is continuously running, it goes in sleep mode only when the computer/microcontroller is suspended, which means no processing.
      Also multithreading systems are totally different beasts when it comes in embedded microcontrollers such as the one used in Arduino.

    • @browaruspierogus2182
      @browaruspierogus2182 6 лет назад

      delay() should not execute anything - it is power consuming code if loops are used. Maybe there are some low power instructions that take lot of cycles.

    • @AccidentalScience
      @AccidentalScience 6 лет назад

      Nope.

    • @browaruspierogus2182
      @browaruspierogus2182 6 лет назад

      Then try blinking 6 leds with different intervals at the same time lol

  • @hugofrancisco9823
    @hugofrancisco9823 4 года назад

    you could have set a bit high when the input is on than check if output is high/low invert the state and reset bit

  • @MrBobWareham
    @MrBobWareham 7 лет назад +1

    I am new to Arduino and would like a better way to program for me it looks such a lot of work to make something happen I have just put together as small circuit with a 555 all I need is to choose C PLUS R job done but in Arduino so much more to do the same thing why?

    • @AccidentalScience
      @AccidentalScience 6 лет назад

      Because for simple task like blinking a 555 is far better and a microcontroller is overkilling.

    • @zuzukouzina-original
      @zuzukouzina-original 5 лет назад +1

      A 555 is designed to work as an oscillator. Such a blink led can also be built with two transistors, 2 capacitors and a few resistors 😜

  • @JadwinManuel
    @JadwinManuel 2 года назад

    hello BP, you can make your libraries code colored by using a keywords text file and putting it in the libraries folder for arduino

  • @georgeakaniro4112
    @georgeakaniro4112 5 лет назад

    I don't understand the logic please. After you added Wasbuttonpushed. I don't understand how the button works, if it stays high after push or goes low after your hand releases. Plz explain

    • @georgeakaniro4112
      @georgeakaniro4112 5 лет назад

      I have analysed it both ways and it doesn't work in my head

    • @georgeakaniro4112
      @georgeakaniro4112 5 лет назад

      If it stays high after push, setting Wasbuttonpushed to 1 should stop it from entering the else part again and because the button stays high, Wasbuttonpushed cannot be 0 gain hence no more switching

  • @nahidhasan-fh3np
    @nahidhasan-fh3np 4 года назад

    Hi i m nahid hasan. Recently i buy a IOT GA6-B mini Gsm module. I face a problem Ardiuno R3 program is Upload but GSM AT Command is Not Response...I don't know Why .....Please Help me to solve this problem....

  • @MrBobWareham
    @MrBobWareham 4 года назад

    I am with you but you didn't put a link to your website it all looks good so want to give it a try thank you for your hard work

  • @featherbrain7147
    @featherbrain7147 5 лет назад

    Interesting. Those example programs are for absolute beginners who eventually progress and see that there are better ways. I think that it is good to learn the nuts and bolts first.

  • @kishpawar
    @kishpawar 7 лет назад +8

    if( millis() - previous_time >= interval ){ // declare previous time to 0 and interval as you wish in setup
    previous_time = millis();
    //your code here below
    digitalWrite( 13 , digitalRead( 13 ) ^ 1 ); // To toggle led.
    }
    //Use this instead

  • @grahamwelshpool3132
    @grahamwelshpool3132 6 лет назад +2

    You miss the point the BLINK program is a starter program to help get new users to get using the Arduino . I am nearly 60 years old, my early programming was in machine code. I found the blink program useful to get started with the Uno...

    • @BPLearningTV
      @BPLearningTV  5 лет назад

      I actually love blink myself and teach it to my students. The problem is that there is nothing in Arduino that helps you move past blink. People see the simplicity of blink, and they are lured in to thinking that it will all be that simple. However, once they get to the point where you have to have counters and delays and debouncing, then a lot of people just give up. This isn't the "easy-as-blink" system they thought it was. The goal of the library is to make *regulare* Arduino programming more simple. Blink is used as a counterpoint just to show where the limitations of it are, not that people shouldn't use it as a starting program.

    • @budove58
      @budove58 5 лет назад

      @@BPLearningTV I agree with what you are saying here. My experience is in Javascript and your video caught my attention as I (as an Arduino newby) was thinking myself that event handlers would be very helpful. I've written some jQuery event handlers myself for some projects and they can be extremely powerful. The basis of what you've done here is great, although I think there is always room for improvement. I would like to see something more object oriented in a future release. Imagine what you could do passing objects to event listeners.

    • @TraceguyRune
      @TraceguyRune 5 лет назад

      Agreed. Blink introduces you to:
      1. Delays
      2. Setting a pin height
      3. setting a pin low
      4. program flow.
      5. program structure.

  • @americanengineering2063
    @americanengineering2063 5 лет назад

    at the beginning you talked about the programs needing to be easier to write and more intuitive but you go through a labrynth of writing un necessary junk to accomplish what you did. this could be accomplished with only adding in 5 lines of code to the original blink. set the pinmode. set a pullup. connect the button to any pin and ground. if button low then flip boolean and delay 1 second so if the button is held it wont cycle no faster than 1 per second.

  • @igamefordays9471
    @igamefordays9471 6 лет назад

    You don't half to set up the button in code but couldn't you just wire the button in a certain way for that to work

  • @davidt1897
    @davidt1897 6 лет назад

    This is a nice clean library. I like it and will use it in an up coming project.

  • @tobiaseaton7049
    @tobiaseaton7049 4 года назад

    This program is not completely good, can you show me how to turn off on the LED instantly at the time you click the button? According to this sketch, sometimes I press the button, the LED stop blinking but still on the HIGH state, which is a little annoying. Thank you!