element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Experimenting with Vibration Sensors
  • Challenges & Projects
  • Design Challenges
  • Experimenting with Vibration Sensors
  • More
  • Cancel
Experimenting with Vibration Sensors
Blog Vibration Sensor and Exercising - Setup to Measure Floor's Vibration and Threshold Alerts Logic - Blog #4
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Events
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: yosoufe
  • Date Created: 18 Jan 2021 9:36 PM Date Created
  • Views 2166 views
  • Likes 10 likes
  • Comments 6 comments
Related
Recommended

Vibration Sensor and Exercising - Setup to Measure Floor's Vibration and Threshold Alerts Logic - Blog #4

yosoufe
yosoufe
18 Jan 2021

  • 3D Printed Mount
  • My Measurement Setup
  • Developing Notification Logic
  • Related Links

 

3D Printed Mount

 

As the title of my project describes, I would like to measure the vibrations of our apartment or its floor that is caused by our indoor exercise.

For this purpose I need to mount the sensor on the ground but unfortunately our apartment has a very thick carpet that is not allowing me to

mount the sensor properly on the ground. So I had an idea to design a legged 3d printed part for mounting the sensor. You can find the 3D

file here. And some images:

 

{gallery:autoplay=false,width=800,height=600} 3d Printed Mount

image

Sensor Mount: 3D printed and 4-legged mount.

image

Sensor Mount: 3D printed and 4-legged mount.

image

Sensor Mount: 3D printed and 4-legged mount.

 

This is not perfect. The legs are not sharp enough to go 100% through the carpet and also they are not strong enough.

Some sort of sharp steel leg would be perfect. I chose the distance between legs too short I believe. Because I need to

put some weight on it to push it to the ground but the mount is so small that the weight is sliding and sometimes causing the vibration.

 

My Measurement Setup

 

In order to be able to measure the vibrations around the apartment I made the following setup.

Here I have

  • the Nucleo board connected to Jetson Nano.
  • The Nucleo board sends the sensor readings to Jetson nano via UART.
  • Sampling rate is 1kHz,
  • There is a jupyter server running on the Jetson nano that I can access it from my desktop.

 

You don't have permission to edit metadata of this video.
Edit media
x
image
Upload Preview
image

 

 

Here is a demo of the remote jupyter server on the Jetson Nano. On the right side you can see the jupyter client

on my desktop that captures the measurements and plot data. I am using Bokeh library for plotting which is very

cool python library.

 

Sorry for the bad quality of the camera recording on the left side. It is also a bit laggy. It uses WiFi to stream the

video to obs-studio. I am using droidcam-obs plugin with obs-studio to capture the video of my android phone

and simultaneously recording my desktop screen. It is really fantastic that it is possible to record the android's cam on PC remotely.

 

You don't have permission to edit metadata of this video.
Edit media
x
image
Upload Preview
image

 

 

 

Developing Notification Logic

As a reminder about my goal, I would like to develop a system that notify me if I am creating

too much of vibration and noise that would annoy the neighbors who are living in the apartment below

our apartment. Till now I have the measurement setup. Here, in the following video I am doing

few measurements and analyse them and I describe which logic I am going to use and show a quick

demo that it is working . I am quite happy with the results. This is the first time I am using FFT for

some practical project image.

 

You don't have permission to edit metadata of this video.
Edit media
x
image
Upload Preview
image

 

 

Related Links

  • My Progress and other blogs
  • The Github Project
  • Interesting Video about Denoising and FFT in numpy
  • Sign in to reply

Top Comments

  • baldengineer
    baldengineer over 4 years ago +2
    Very clever mounting technique. As a former apartment dweller, I appreciate this project. I look forward to seeing how you move forward!
  • navadeepganeshu
    navadeepganeshu over 4 years ago +1
    Nice idea of having a sharp tooth mount for the sensor. Cool! Is your Jetson nano hosting Jupyter Notebook and it's accessed by your PC over same Wi-Fi network?
  • yosoufe
    yosoufe over 4 years ago in reply to navadeepganeshu +1
    Hi navadeepganeshu , Thanks Yes, The Jupyter notebook is running on Jetson and accessed via WiFi on my Desktop through an ssh tunnel. Like this: ssh -X -L 9999:localhost:9999 user_on_jetson@jetson_ip jupyter…
  • yosoufe
    yosoufe over 4 years ago in reply to navadeepganeshu

    navadeepganeshu I do not have a good understanding on how the X server works on linux. I would need a virtual screen to be able to use VNC without physical monitor connected.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • yosoufe
    yosoufe over 4 years ago in reply to baldengineer

    Thank you baldengineer. I am glad you like it

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • baldengineer
    baldengineer over 4 years ago

    Very clever mounting technique.

     

    As a former apartment dweller, I appreciate this project. I look forward to seeing how you move forward!

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • navadeepganeshu
    navadeepganeshu over 4 years ago in reply to yosoufe

    I was thinking if you were using some remote access software like VNC for it. Thanks for the clarification and sharing the code :]

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • yosoufe
    yosoufe over 4 years ago in reply to navadeepganeshu

    Hi navadeepganeshu,  Thanks

     

    Yes, The Jupyter notebook is running on Jetson and accessed via WiFi on my Desktop through an ssh tunnel. Like this:

     

    ssh -X -L 9999:localhost:9999 user_on_jetson@jetson_ip
    jupyter notebook --port 9999 --no-browser
    # Now the jupyter can be accessed on localhost:9999

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • More
    • Cancel
>
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube