Free Fall Detection / Direct Register Programming / ADXL345

Поделиться
HTML-код
  • Опубликовано: 20 дек 2024

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

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

    Another excellent video.Thank you for sharing it with us.
    I have to say, that in the process of learning the Forth language, I am revisiting a lot of your videos; the ones in which you share and explain your code and at last they're making sense to me !
    This Forth stuff with it's quirky back-to-front coding is very addictive!

    • @0033mer
      @0033mer  4 года назад

      Thanks for the feedback.

  • @neeldalwadi3881
    @neeldalwadi3881 3 года назад +2

    Hey!! Can you provide a link of this code??

  • @bikashgururandom
    @bikashgururandom 3 года назад +2

    Thanks
    I also subscribed your channel
    I loved this video
    I want see wiring diagram
    And code

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

    Love your stuff. Thank you!! Have to say I'm not a big Forth fan, haven't used that for about 20 years and I find C/C++ much easier to follow.
    Thanks again, really appreciate you making these videos.

    • @0033mer
      @0033mer  4 года назад

      Thanks for the feedback. I started programming in C/C++ back in the day with Borland C/C+. I still do, but I like using Forth to control hardware. I know it's not mainstream but I have been doing it for a while.

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

    Can a nano handle the 6dof which sets off a timer at FF then activates a servo/solenoid? Or is that too much for a nano… new to this

    • @0033mer
      @0033mer  2 года назад

      Actually for a simple free fall detector you can do it with just an accelerometer. When freefall occurs for a preset time period an output pin goes high which could activate a device. Check the data sheet for more details.

  • @shaunferris6063
    @shaunferris6063 3 года назад +2

    hello, this is amazing and simple exactly what i need for my rocket . im not coder but im looking for something this simple. I cannot find anywhere. will you perhaps share your code ? thank you

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

    It didn’t look like the interrupt pin on the accelerometer is connected to the microcontroller. Are you polling the accelerometer’s register for the interrupt status?

    • @0033mer
      @0033mer  4 года назад

      Yes .. I was polling the register in that video clip but either way will work. I mentioned the external interrupt pin as an easier option for anyone who is new to coding.

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

    Great video! Not too familiar with Forth though. Does the arduino nano have to stay plugged into the computer in order to work? Or could this work if disconnected as well?

    • @0033mer
      @0033mer  4 года назад

      It can run stand-alone with an external battery. The USB connection was used just to supply power.

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

    This is amazing! Is there any way you could share your code for the free fall detection? I have the module working with a nano as well but can't figure out the free fall element. Thanks for the video!

    • @0033mer
      @0033mer  2 года назад +1

      I am running Forth and using direct register programming with my keyboard.
      flashforth.com/
      If you want code check out the Adafruit web site ADXL345 page.

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

    Thank you. I use Forth and find very interesting most of your videos. Can you show more code, ie for this control by keyboard?

    • @0033mer
      @0033mer  4 года назад +1

      You can see more code in this video: ruclips.net/video/B4FNf_VODjQ/видео.html

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

      @@0033mer ThankYou very much! It is what i was looking for.

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

    Can you please share the code for free fall detection.

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

    hey! could you paste your Arduino code? Forward thanks!

  • @mr.andmissblash8114
    @mr.andmissblash8114 4 года назад

    plz help to make this circuit and can we make it with attiny 85
    plz help

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

    Can you help me In order to write code Arduino adxl 345 led for projet bad sitting posture detection

    • @0033mer
      @0033mer  4 года назад

      Check out this video: ruclips.net/video/hAFd1yK0DyQ/видео.html
      No code needed.

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

    Very interesting thank you very much

    • @0033mer
      @0033mer  4 года назад

      Very welcome

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

    Awesome thanks for sharing 👍

    • @0033mer
      @0033mer  4 года назад

      You're welcome.

  • @d.k.ssanwariyacreation3733
    @d.k.ssanwariyacreation3733 4 года назад

    Good work

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

    Great video!

    • @0033mer
      @0033mer  4 года назад

      Thanks for the visit

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

      @@0033mer Any chance of using something like this on a drone for a parachute or inflatable device? You might have something here my man.

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

    can you share the code file please

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

    Helllooo could you please have the code for this arduino project?

    • @0033mer
      @0033mer  4 года назад

      Monitor INT1 pin with GPIO of Nano, it changes when freefall occurs. I am changing registers interactively with Forth so there is no code.

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

    Thank you

    • @0033mer
      @0033mer  4 года назад +1

      You're welcome

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

    Can you please share the source code.

    • @0033mer
      @0033mer  2 года назад

      : FF
      BEGIN
      Int1 high?
      if pin8 high 4 seconds pin8 low
      else pin8 low
      then key?
      UNTIL ;

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

    sir plz share code

    • @0033mer
      @0033mer  4 года назад

      : FF
      BEGIN
      Int1 high?
      if pin8 high
      4 seconds \ Led ON
      pin8 low
      else pin8 low
      then key?
      UNTIL ;

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

    Share the source code.

    • @0033mer
      @0033mer  2 года назад

      : FF
      BEGIN
      Int1 high?
      if pin8 high 4 seconds pin8 low
      else pin8 low
      then key?
      UNTIL ;