A library for ADS1015 and ADS1115 from Texas Instruments.
Dependents: IGGE_Power ADS1015-hello_world ADS1115-hello_world frdm_rtos_Eth ... more
Use like this
#include "mbed.h" #include "Adafruit_ADS1015.h" #include "USBSerial.h" #define SERIAL_BAUD_RATE 9600 I2C i2c(p23, p18); Adafruit_ADS1015 ads(&i2c); USBSerial pc; // USB CDC serial port int main() { uint16_t reading; while (1) { reading = ads.readADC_SingleEnded(0); // read channel 0 pc.printf("reading: %d\r\n", reading); // print reading wait(2); // loop 2 sek } }
Library ported from Arduino at github repository.
Breakout boards from Adafruit: http://learn.adafruit.com/adafruit-4-channel-adc-breakouts/overview
GitHub repository: https://github.com/adafruit/Adafruit_ADS1X15
Changes
Revision | Date | Who | Commit message |
---|---|---|---|
5:aa277517f0ad | 2014-10-11 | arve0 | ads1115 comments |
4:6445a678d458 | 2014-10-11 | arve0 | merged ads1115 changes |
3:fb735fb343de | 2014-10-11 | arve0 | add comments |
2:d864e21d4e58 | 2014-10-11 | arve0 | 4 space indentation |
1:659ccb9047ed | 2013-11-10 | arve0 | fix license |
0:8174d9ceeca1 | 2013-11-10 | arve0 | Ported from Adafruit's arduino library |