Very nice and beautiful and extremely useful explanations, welldone
@TahirElectronics3 жыл бұрын
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
@BarkaMusicRajapakar3 жыл бұрын
Yes bro
@AhmadLogs3 жыл бұрын
INSHAALLAH
@KevrenBey Жыл бұрын
Super Video Thanks From Turkey
@jack226029 ай бұрын
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?
@meghanasudhakar34532 ай бұрын
Really it's thankful for ur vedio and plse tell how to generate alert msg while fall detector change the direction...
@qzorn4440 Жыл бұрын
most interesting. 🥳 Thank you.
@pakorn2484kongthong3 ай бұрын
hi , this video is excelent please demonstrate gy-521 or mpu6050
@heruwibowo4442 Жыл бұрын
So great and simple information like your other video thanks. Interested in being used as an adaptive headlight motorcyle.
@AhmadLogs Жыл бұрын
Glad it was helpful!
@EasyOne3 жыл бұрын
Very well explained
@AhmadLogs3 жыл бұрын
Thanks for liking
@nosibaahmed1482 жыл бұрын
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.
@AhmadLogs2 жыл бұрын
check out kzbin.info/www/bejne/amjSlKCPZqh2epo
@megaminers29722 жыл бұрын
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 Жыл бұрын
just copy and paste the code here
@dheersudheer76622 жыл бұрын
This is really awesome..........information sir and I have a doubt how to single and double tap function
@rampage_xdit3 жыл бұрын
So great and simple information like your other video thanks
@AhmadLogs3 жыл бұрын
thanks
@keepyousafe053 ай бұрын
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?
@shakerileiwat43413 жыл бұрын
Great usefull video Thank you ♥
@AhmadLogs3 жыл бұрын
You're welcome 😊
@jp0407592 жыл бұрын
Great info vid. Thanx
@AhmadLogs2 жыл бұрын
Glad it was helpful!
@tamirutesfaye93296 ай бұрын
can i use this accelerometer to measure tractor Vibration?
@ZainDaboul4 ай бұрын
Thank you. How can i count steps please
@adamzarglayoun3983 Жыл бұрын
Hello, what do the values mean before you change them into G ?
@VIP_ViruS624 Жыл бұрын
whats a "zed" and is it important to do this
@iceman1st12 жыл бұрын
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.
@AhmadLogs2 жыл бұрын
1. unfortunately not. 2. use LM2596 buck converter with 12v.
@mayagaonkar1590 Жыл бұрын
Sir can we use this for hand gestures drone system
@AhmadLogs Жыл бұрын
not sure
@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 Жыл бұрын
yes you can
@gyanendrakumar6751 Жыл бұрын
@@AhmadLogs how sir😇
@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 Жыл бұрын
@@AhmadLogs wowww sir thankuu you did this much for me.. 😭
@VIP_ViruS624 Жыл бұрын
@@gyanendrakumar6751 ur reaction is cringier than the furries in texas
@ayaaa892 жыл бұрын
Hello can this be an equivalent of a simple seismometer ?
@AhmadLogs2 жыл бұрын
you can say
@ayaaa892 жыл бұрын
@@AhmadLogs can you please explain further ? do you think this circuit can be a good addition in a project about seismometers for a beginner ?
@AhmadLogs2 жыл бұрын
@@ayaaa89 unfortunately I have not any idea yet
@BarkaMusicRajapakar3 жыл бұрын
Sir plz make how to make Delate message Gsm 800l full video make
@AhmadLogs3 жыл бұрын
will try
@balbirsinghheer13702 жыл бұрын
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
@AhmadLogs2 жыл бұрын
use the following if else condition if(x >= 100 and x
@balbirsinghheer13702 жыл бұрын
Thankyou sir should i use this in void loop
@AhmadLogs2 жыл бұрын
@@balbirsinghheer1370 yes.
@ayaaa892 жыл бұрын
hi can i use gy-271 instead of adxl335
@AhmadLogs2 жыл бұрын
just give it a try
@FlightheroRC Жыл бұрын
how do you program this into an artificial horizon
@AhmadLogs Жыл бұрын
please explain
@ObaidullahKakar3 жыл бұрын
Great
@AhmadLogs3 жыл бұрын
thanks
@cynosurewolf60092 жыл бұрын
Hello Sir can you do its simulation in proteus?
@AhmadLogs2 жыл бұрын
will try
@cynosurewolf60092 жыл бұрын
@@AhmadLogs Sir actually there is no dedicated library available for ADXL335
@AhmadLogs2 жыл бұрын
@@cynosurewolf6009 it might be possible with the same code.
@cynosurewolf60092 жыл бұрын
@@AhmadLogs Sir, it is possible. But do you have dedicated ADXL335 library?
@AhmadLogs2 жыл бұрын
@@cynosurewolf6009 unfortunately not. you have to build it yourself
@BilalAhmed-jh2jv10 ай бұрын
If a vehicle got jerk or accident then how this sensor tell about accident???
@thilak_b2 жыл бұрын
how to get vibration with adxl335
@БакытбекОрынбаев-й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 Жыл бұрын
check baud rate...should be 115200
@halimasiddiqui3470 Жыл бұрын
Not showing any reading what to. Do
@tahseenshaikh9343 Жыл бұрын
check baud rate...it should be 115200
@gyanendrakumar6751 Жыл бұрын
Sir problem uploading to board is coming while uploading what to do please replyy
@AhmadLogs Жыл бұрын
have you selected the correct com port
@gyanendrakumar6751 Жыл бұрын
@@AhmadLogs brother thanks I just made mistake, which I correct by watching your video part by part Thanks you...