User Manual

VMA453
V. 01 06/05/2020 5 ©Velleman nv
2. Open the Arduino
®
IDE and load the Adafruit_ADS1X15-master.zip library as following
(available on our website).
3. Load the VMA453_example_sketch.ino (available on our website).
4. Compile and upload the example.
5. Open the serial monitor (be sure the baud rate is 9600). This should be the result:
9. Used Example Code
#include <Wire.h>
#include <Adafruit_ADS1015.h>
Adafruit_ADS1115 ads(0x48);
float Voltage = 0.0;
void setup(void)
{
Serial.begin(9600);
ads.begin();
}