ADS1115 16 Bit ADC Module with Arduino

  Рет қаралды 52,976

Gadget Reboot

Gadget Reboot

Күн бұрын

Пікірлер: 36
@chesshooligan1282
@chesshooligan1282 Жыл бұрын
This is my first video in this channel, immediate subscription. No annoying intros, no rambling, no waffle, no "He-llo... this... is... the... guy... with... the... Swiss... accent..." Straight to the point and fast-paced, but not too fast. Schematic, code examples, and links in the description. Absolutely perfect. I wish all KZbin videos were like this. Thanks.
@aliens1192
@aliens1192 3 жыл бұрын
Very nice description and comparison between those little buddies! Thanks, man!
@erikderuiter7475
@erikderuiter7475 3 жыл бұрын
very useful information and as a relative electronics novice I can follow this very well. I want to built an Arduino multi input voltmeter to experiment and learn electronic by probing several points in the schematic simultaneously so this little chip is very useful! I'll have to look into the impedance of the chip but it looks promising. Thank you!
@TheDefpom
@TheDefpom 5 жыл бұрын
The arduino can have a different (lower) ADC reference voltage applied to give finer measurements, BUT you are limited to that voltage as the maximum input level on the analog inputs.
@markhall3323
@markhall3323 2 жыл бұрын
Very useful and well-made thanks
@electronic7979
@electronic7979 5 жыл бұрын
Helpful information. I like it.👍
@markuspfaff5504
@markuspfaff5504 Жыл бұрын
great Video an your other projects :-) have a simple question: if I need no +/- range, but a range from 0V to 2,5V with the best resolution of the ADS1115. I dont know, I have to programm this effect. 0V to 2,5V shout be a digital value 0 to 65536. Is that possible?
@gianlucamolinari3490
@gianlucamolinari3490 3 жыл бұрын
Could someone help me to properly connect a load cell to the Ads1115 for Arduino uno? I can't find the proper wiring with a load cell anywhere. Help would be greatly appreciated
@josephcoyne5083
@josephcoyne5083 4 жыл бұрын
I have a question for you. So I wired everything exactly the same and used your exact code, but I am having trouble. When I set my gain to 2x gain my resolution I read from the serial monitor on A2 is only 1mV- meaning the smallest value it changes by when I adjust the potentiometer is 1mV (it should be 62.5 micro volts). Also I tried reading the adc2 value directly (not converting to mV) and it only has a resolution of 16 integers (it will jump 16 numbers when I adjust the potentiometer instead of just 1 ) Please help me!! :)
@aldercamper9430
@aldercamper9430 5 жыл бұрын
only yesterday made a current meter with a current transformer and this chip.
@whitefields5595
@whitefields5595 4 жыл бұрын
I am about to do the same. Were you measuring AC? Did you make use of the +ve and -ve values on the waveform?
@kopileo9857
@kopileo9857 4 жыл бұрын
Wait, my ADS1115 couldn't read the data output. it just my Arduino A0 can read the data. But when i use SPI scanner, there is an address so my i2c has been connected. but i'm still confuse why it didn't give the data. is there any idea?
@danielcohen2058
@danielcohen2058 4 жыл бұрын
Thanks for the video. How do you configure the sampling rate?
@ArjanvanVught
@ArjanvanVught 5 жыл бұрын
When using an ADS1115, then we can just use a STM32 family chip as well.
@GadgetReboot
@GadgetReboot 5 жыл бұрын
I still need to get my first hello world STM32 project up and running. I think I’ll start by blinking two LEDs instead of the usual one.
@GnuReligion
@GnuReligion 5 жыл бұрын
When using differential read, can you make a reading beyond the voltage range of the power going into the ADS device? Like between 14V and 15V to get 1V.
@GadgetReboot
@GadgetReboot 5 жыл бұрын
If we want to use voltages outside the device’s tolerable input, there’s other structures needed like maybe an isolated or floating measurement scheme. I’ve never done it but here’s one article related to that www.maximintegrated.com/en/design/technical-documents/app-notes/1/1108.html
@hyperrunner4589
@hyperrunner4589 4 жыл бұрын
What to do if I want to transmit 16bit data to slave via bluetooth?
@smsohelrana9515
@smsohelrana9515 3 жыл бұрын
If I want to measure 50 to 500 V (Sensor signal) AC via Arduino then how to possible? If I replace the potentiometer and connect the sensor output to ADC. Please let me know connection diagram if possible. Thank you.
@GadgetReboot
@GadgetReboot 3 жыл бұрын
It's not a simple answer, especially because there could be safety considerations that greatly change the design complexity, and also not knowing the design requirements, a suitable circuit can't be designed. For instance, does the entire signal need to be preserved so it can be analyzed in software or just the maximum/minimum voltages seen over a time frame need to be captured (so a circuit design totally changes and can be simpler) etc. So you'd be better off researching application notes from manufacturers of ADCs to see how they implement various measurement goals, and other power electronics dedicated resources to see how to deal with and interface with hazardous voltage levels to be able to safely and effectively measure them.
@gkpgeo
@gkpgeo 3 жыл бұрын
Can we measure voltages above 10 volts with help of ADC thru converter?
@GadgetReboot
@GadgetReboot 3 жыл бұрын
A voltage divider can scale a voltage down until it's within the input range of the ADC. If the voltage is below 0v it will need to be shifted up somehow and things get more complicated.
@FlySweden
@FlySweden 4 жыл бұрын
Hello, Could I use an Arduino Pro Micro (10bit resolution) with the ADS1115 (16bit resolution) to build a joystick (with better sensivity) that uses some hall effect sensors with magnets ? Thank you !
@wingandaprayer883
@wingandaprayer883 3 жыл бұрын
Yes is the answer, I have just done that very thing with several controls, using the pro-micro hooked up to a ADS1115.
@luosser
@luosser 2 жыл бұрын
hello, I want to measure the negative voltage and send it back to arduino due but the datasheet of arduino due says it cannot receive negative voltage, will it make any difference .thank you
@GadgetReboot
@GadgetReboot 2 жыл бұрын
The ADC chip also can’t directly take a negative voltage other than about 0.3 V below ground. but even if it could, it’s only communicating back to Arduino as a data signal over I2C so the Arduino wouldn’t see a negative voltage itself. if you’re doing a differential measurement where you can actually get negative numbers, it’s still just a subtraction between two different positive analog voltages.
@luosser
@luosser 2 жыл бұрын
@@GadgetReboot Thanks for answering my question!
@ELEKHOB
@ELEKHOB 4 жыл бұрын
Nice video... Need help, I want to single output 0-5volt. I have try use arduino only, but have value 0-1023. Use arduino only and view in plx-daq. I have ads1115 and arduino uno need the wiring and code to get 16 bit and decreet more than use arduino only.
@jajuliproject
@jajuliproject 4 жыл бұрын
please mention your code on your screen here ...
@carlosmf6954
@carlosmf6954 9 ай бұрын
👌
@Scrogan
@Scrogan 5 жыл бұрын
I think it’s Vref/(2^n - 1), not Vref/(2^n). Because the smallest value will always refer to 0.
@GadgetReboot
@GadgetReboot 5 жыл бұрын
I always found the topic confusing and this thread tries to straighten out the whole concept of measuring a range of voltages per bit rather than an exact voltage. It’s one of those things where I need a clear mind to go back and try to understand it all again. At least for the things I’m doing it doesn’t affect the results drastically. forum.arduino.cc/index.php?topic=303189.0
@ashifriady
@ashifriady 4 жыл бұрын
because array start from zero
@apollorobb
@apollorobb Жыл бұрын
Thats 187.5 microvolts not millivolts
Arduino, ADS1115 16-Bit ADC with I2C Bus and Adafruit Library - The Details
41:51
😜 #aminkavitaminka #aminokka #аминкавитаминка
00:14
Аминка Витаминка
Рет қаралды 3,2 МЛН
Tinkering with: ADS1115 analog-digital converter
18:30
pileofstuff
Рет қаралды 12 М.
How-to: Accurate Voltage Measurements with Arduino
12:15
Elektor TV
Рет қаралды 42 М.
12-bit DAC Arduino MCP4725 How To Use It - Stable Voltage Reffrence
11:21
Constant Voltage or Current Supply with ARDUINO
18:02
Electronoobs
Рет қаралды 71 М.
Maximizing Arduino’s ADC Resolution and Accuracy Part 1
13:58
ForceTronics
Рет қаралды 38 М.
Emitter Follower as a Buffer Between a Source and Load
21:29
Gadget Reboot
Рет қаралды 830
#18 ADS1115 Analog-to-Digital Converter Tutorial
7:07
Andreas Spiess
Рет қаралды 92 М.
TUTORIAL: How to / About the ADS1115 External 16 Bit ADC - Part 2
16:25
Antony Cartwright (Electronics & Code)
Рет қаралды 67 М.
Different Ways for Measuring Current With Arduino
13:32
Electronoobs
Рет қаралды 79 М.
Лазерная замена стекла iPhone 14 plus
1:00
Mosdisplay
Рет қаралды 3,1 МЛН
DualShock Evolution 🎮
0:12
Gleb POV
Рет қаралды 984 М.
HONOR MAGIC 7 PRO. ПЕРВЫЙ ОБЗОР В РОССИИ
20:21
ЧЕСТНЫЙ БЛОГ
Рет қаралды 29 М.
Обзор Pixel 9 Pro / XL
16:17
Rozetked
Рет қаралды 437 М.