How To Interface ADXL335 Analog Accelerometer Sensor With Arduino

  Рет қаралды 45,512

Ahmad Logs

Ahmad Logs

Күн бұрын

Пікірлер
@mofaksalman9112
@mofaksalman9112 11 ай бұрын
Very nice and beautiful and extremely useful explanations, welldone
@TahirElectronics
@TahirElectronics 3 жыл бұрын
Assalam o alikum dear sir Your KZbin channel has been subscribed for many months There is always great content on your channel You explain everything very well in every video Keep up the good content. One day you will definitely get billions of subscribers to your channel
@BarkaMusicRajapakar
@BarkaMusicRajapakar 3 жыл бұрын
Yes bro
@AhmadLogs
@AhmadLogs 3 жыл бұрын
INSHAALLAH
@KevrenBey
@KevrenBey Жыл бұрын
Super Video Thanks From Turkey
@jack22602
@jack22602 9 ай бұрын
A grat video! What is the range of frequencies that this will measure? I'm interesting in measuring the frequency of a vibration noise coming through the floor. How can we convert the intensity of the vibration to some real value?
@meghanasudhakar3453
@meghanasudhakar3453 2 ай бұрын
Really it's thankful for ur vedio and plse tell how to generate alert msg while fall detector change the direction...
@qzorn4440
@qzorn4440 Жыл бұрын
most interesting. 🥳 Thank you.
@pakorn2484kongthong
@pakorn2484kongthong 3 ай бұрын
hi , this video is excelent please demonstrate gy-521 or mpu6050
@heruwibowo4442
@heruwibowo4442 Жыл бұрын
So great and simple information like your other video thanks. Interested in being used as an adaptive headlight motorcyle.
@AhmadLogs
@AhmadLogs Жыл бұрын
Glad it was helpful!
@EasyOne
@EasyOne 3 жыл бұрын
Very well explained
@AhmadLogs
@AhmadLogs 3 жыл бұрын
Thanks for liking
@nosibaahmed148
@nosibaahmed148 2 жыл бұрын
Thank you for this useful video. You said that you will use it in an accident detection system project, if you can make a video of this project please.
@AhmadLogs
@AhmadLogs 2 жыл бұрын
check out kzbin.info/www/bejne/amjSlKCPZqh2epo
@megaminers2972
@megaminers2972 2 жыл бұрын
Great video! Do you know of any way to measure around 90 to 100 g’s? I am working on a project to detect concussions. Thank you!
@AhmadLogs
@AhmadLogs Жыл бұрын
just copy and paste the code here
@dheersudheer7662
@dheersudheer7662 2 жыл бұрын
This is really awesome..........information sir and I have a doubt how to single and double tap function
@rampage_xdit
@rampage_xdit 3 жыл бұрын
So great and simple information like your other video thanks
@AhmadLogs
@AhmadLogs 3 жыл бұрын
thanks
@keepyousafe05
@keepyousafe05 3 ай бұрын
Sir, I want to ask. What about the senstivity of ADXL335 between 270 mV/g until 330 mV/g? but i see that you get your value x+ x- y+ y- z+ z- more than 330? how about that?
@shakerileiwat4341
@shakerileiwat4341 3 жыл бұрын
Great usefull video Thank you ♥
@AhmadLogs
@AhmadLogs 3 жыл бұрын
You're welcome 😊
@jp040759
@jp040759 2 жыл бұрын
Great info vid. Thanx
@AhmadLogs
@AhmadLogs 2 жыл бұрын
Glad it was helpful!
@tamirutesfaye9329
@tamirutesfaye9329 6 ай бұрын
can i use this accelerometer to measure tractor Vibration?
@ZainDaboul
@ZainDaboul 4 ай бұрын
Thank you. How can i count steps please
@adamzarglayoun3983
@adamzarglayoun3983 Жыл бұрын
Hello, what do the values mean before you change them into G ?
@VIP_ViruS624
@VIP_ViruS624 Жыл бұрын
whats a "zed" and is it important to do this
@iceman1st1
@iceman1st1 2 жыл бұрын
have you got any videos showing how to use this to detect when something is slowing down and make a light come on. also can i use this on a 12v. i want to start learning how to do things like this so this will be the first time making something.
@AhmadLogs
@AhmadLogs 2 жыл бұрын
1. unfortunately not. 2. use LM2596 buck converter with 12v.
@mayagaonkar1590
@mayagaonkar1590 Жыл бұрын
Sir can we use this for hand gestures drone system
@AhmadLogs
@AhmadLogs Жыл бұрын
not sure
@gyanendrakumar6751
@gyanendrakumar6751 Жыл бұрын
Brother how we can connect 2 adxl 335 sensors? And get their values? ( I have to keep both sensors at different places and take their readings) Please reply
@AhmadLogs
@AhmadLogs Жыл бұрын
yes you can
@gyanendrakumar6751
@gyanendrakumar6751 Жыл бұрын
@@AhmadLogs how sir😇
@AhmadLogs
@AhmadLogs Жыл бұрын
@@gyanendrakumar6751 here is the sample code. // Define the analog input pins for each accelerometer const int xPin1 = A0; const int yPin1 = A1; const int zPin1 = A2; const int xPin2 = A3; const int yPin2 = A4; const int zPin2 = A5; void setup() { // initialize serial communication at 9600 bits per second: Serial.begin(9600); } void loop() { // read and print the values from the first accelerometer int x1 = analogRead(xPin1); int y1 = analogRead(yPin1); int z1 = analogRead(zPin1); Serial.print("Accelerometer 1: "); Serial.print("X = "); Serial.print(x1); Serial.print(", Y = "); Serial.print(y1); Serial.print(", Z = "); Serial.println(z1); // read and print the values from the second accelerometer int x2 = analogRead(xPin2); int y2 = analogRead(yPin2); int z2 = analogRead(zPin2); Serial.print("Accelerometer 2: "); Serial.print("X = "); Serial.print(x2); Serial.print(", Y = "); Serial.print(y2); Serial.print(", Z = "); Serial.println(z2); delay(1000); }
@gyanendrakumar6751
@gyanendrakumar6751 Жыл бұрын
@@AhmadLogs wowww sir thankuu you did this much for me.. 😭
@VIP_ViruS624
@VIP_ViruS624 Жыл бұрын
@@gyanendrakumar6751 ur reaction is cringier than the furries in texas
@ayaaa89
@ayaaa89 2 жыл бұрын
Hello can this be an equivalent of a simple seismometer ?
@AhmadLogs
@AhmadLogs 2 жыл бұрын
you can say
@ayaaa89
@ayaaa89 2 жыл бұрын
@@AhmadLogs can you please explain further ? do you think this circuit can be a good addition in a project about seismometers for a beginner ?
@AhmadLogs
@AhmadLogs 2 жыл бұрын
@@ayaaa89 unfortunately I have not any idea yet
@BarkaMusicRajapakar
@BarkaMusicRajapakar 3 жыл бұрын
Sir plz make how to make Delate message Gsm 800l full video make
@AhmadLogs
@AhmadLogs 3 жыл бұрын
will try
@balbirsinghheer1370
@balbirsinghheer1370 2 жыл бұрын
Hi sir i have a question what if we want to print 'on' when value of x is between 100-150 and 'off' when value is in below 100 and on same time we can upload this data on our website and thankyou so much for this great video
@AhmadLogs
@AhmadLogs 2 жыл бұрын
use the following if else condition if(x >= 100 and x
@balbirsinghheer1370
@balbirsinghheer1370 2 жыл бұрын
Thankyou sir should i use this in void loop
@AhmadLogs
@AhmadLogs 2 жыл бұрын
@@balbirsinghheer1370 yes.
@ayaaa89
@ayaaa89 2 жыл бұрын
hi can i use gy-271 instead of adxl335
@AhmadLogs
@AhmadLogs 2 жыл бұрын
just give it a try
@FlightheroRC
@FlightheroRC Жыл бұрын
how do you program this into an artificial horizon
@AhmadLogs
@AhmadLogs Жыл бұрын
please explain
@ObaidullahKakar
@ObaidullahKakar 3 жыл бұрын
Great
@AhmadLogs
@AhmadLogs 3 жыл бұрын
thanks
@cynosurewolf6009
@cynosurewolf6009 2 жыл бұрын
Hello Sir can you do its simulation in proteus?
@AhmadLogs
@AhmadLogs 2 жыл бұрын
will try
@cynosurewolf6009
@cynosurewolf6009 2 жыл бұрын
@@AhmadLogs Sir actually there is no dedicated library available for ADXL335
@AhmadLogs
@AhmadLogs 2 жыл бұрын
@@cynosurewolf6009 it might be possible with the same code.
@cynosurewolf6009
@cynosurewolf6009 2 жыл бұрын
@@AhmadLogs Sir, it is possible. But do you have dedicated ADXL335 library?
@AhmadLogs
@AhmadLogs 2 жыл бұрын
@@cynosurewolf6009 unfortunately not. you have to build it yourself
@BilalAhmed-jh2jv
@BilalAhmed-jh2jv 10 ай бұрын
If a vehicle got jerk or accident then how this sensor tell about accident???
@thilak_b
@thilak_b 2 жыл бұрын
how to get vibration with adxl335
@БакытбекОрынбаев-й2и
@БакытбекОрынбаев-й2и Жыл бұрын
i have problems:if I copy the code and send it to execution, then after 6 lines of numbers, different characters will appear
@tahseenshaikh9343
@tahseenshaikh9343 Жыл бұрын
check baud rate...should be 115200
@halimasiddiqui3470
@halimasiddiqui3470 Жыл бұрын
Not showing any reading what to. Do
@tahseenshaikh9343
@tahseenshaikh9343 Жыл бұрын
check baud rate...it should be 115200
@gyanendrakumar6751
@gyanendrakumar6751 Жыл бұрын
Sir problem uploading to board is coming while uploading what to do please replyy
@AhmadLogs
@AhmadLogs Жыл бұрын
have you selected the correct com port
@gyanendrakumar6751
@gyanendrakumar6751 Жыл бұрын
@@AhmadLogs brother thanks I just made mistake, which I correct by watching your video part by part Thanks you...
@hassanfathy1604
@hassanfathy1604 2 жыл бұрын
code not found
@somerandomvideos645
@somerandomvideos645 9 ай бұрын
don't connect it on 5v, it should work on 3.3v
How does an Accelerometer work? | 3D Animation
6:11
CircuitBread
Рет қаралды 176 М.
14 | Measure angles with the MPU6050 accelerometer
13:03
Carbon Aeronautics
Рет қаралды 167 М.
«Жат бауыр» телехикаясы І 30 - бөлім | Соңғы бөлім
52:59
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 340 М.
GIANT Gummy Worm #shorts
0:42
Mr DegrEE
Рет қаралды 152 МЛН
JISOO - ‘꽃(FLOWER)’ M/V
3:05
BLACKPINK
Рет қаралды 137 МЛН
How To Track Orientation with Arduino | ADXL345 Accelerometer Tutorial
9:20
How To Mechatronics
Рет қаралды 341 М.
Vibration Analyzer for $20
24:22
siu automotive
Рет қаралды 58 М.
Acceleration Measurement with Accelerometer and Arduino
5:23
How To Electronics
Рет қаралды 58 М.
How to use LoRa Module with Arduino - Range Test - RYLR406 15KM
13:00
Interfacing ADXL335 Accelerometer with Arduino | English
16:41
SM training academy
Рет қаралды 4,3 М.
«Жат бауыр» телехикаясы І 30 - бөлім | Соңғы бөлім
52:59
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 340 М.