How to code Arduino using Events | Actions | States

Поделиться
HTML-код
  • Опубликовано: 20 фев 2021
  • For Christmas, I signed myself up for the "Creative Engineering with Mark Rober". As part of the class we have to build something with an Arduino. Below is a link to my project. I created this video to help one of my peers in the class with their project.
    I have post four videos for the project:
    The Idea: • My Project for Creativ... ​
    Progress: • My Project for Creativ... ​
    Final Result: • Magical Alexa-Spotify-... ​ | • My Project for Creativ... ​
    Link to the Creative Engineering with Mark Rober class:
    monthly.com/mark-rober-engine...
    This is my second RUclips Channel where I focus on software development. My other channel 'Maker At Play' is where i share my maker projects related to woodworking and electronics. / makeratplay
    Want to support my Diet Dr Pepper addiction?
    / makeratplay
    buymeacoffee.com/makeratplay
    Follow:
    / makeratplay
    / makeratplay
    / makeratplay1
    You can find me here as well:
    makeratplay.com/
    / hawkinsmlh
    about.me/michaelhawkins/
    Tools used to make my videos:
    Video Editor Software: Davinci Resolve
    Camera Samsung Galaxy S8 Phone & Canon EOS M50
    Mic: Rode Videomic Shotgun microphone with Rycote Lyre Suspension
  • ХоббиХобби

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

  • @AJayTheStageArtist
    @AJayTheStageArtist 4 месяца назад

    Thank you so much for sharing ❤

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

    Great explanation of the code, events and actions. This helps with a project I’m currently working on. Thanks.

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

    Thanks for sharing! Do you have a full example of the code? The enum structure is perfect for a project I'm working on but I'm just trying to understand it a bit more.

    • @makeratplaycoding2666
      @makeratplaycoding2666  2 года назад +2

      Glad you found it helpful. Here is a link to the source code used in the video. www.dropbox.com/s/7524oa19769shrk/sketch_Unlock_Photo_and_Servo.ino?dl=0

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

    enum class name MachineState. But is it true that's how to use enum ? I thought need to declare the object and call the variables .

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

      In other programming languages they have the concept of the enum being an object with methods. But in C++ and my example code in the the video the enum is just a data type and not an object.