Demo of the ACS712 Library

Dependencies:   Servo mbed

Fork of ece4180_lab4_ACS712 by Gedeon Nyengele

main.cpp

Committer:
nyengele
Date:
2016-03-13
Revision:
1:4f9effb20c29
Parent:
0:a35011a2fdaa
Child:
5:a022ca4aaa1e

File content as of revision 1:4f9effb20c29:

#include <mbed.h>
#include "ACS712.h"

int main()
{
    // Connect the sensor analog output pin to mbed's AnalogIn pin
    ACS712 dev(p18);
    // Connect mbed to pc's USB port
    Serial pc(USBTX, USBRX);
    pc.printf("Sensor Log: \n\n\r");

    while (1) {
        // Read current from sensor and output to pc terminal
        pc.printf("Sensor Value: %2.2f A\n\r", dev);
        wait(0.200);
    }

}