1月13日分

Dependencies:   INA226 mbed

Fork of INA226TEST by Toshihisa T

main.cpp

Committer:
YusukeWakuta
Date:
2016-01-13
Revision:
2:ae52901630fc
Parent:
0:b20f8673a7fa

File content as of revision 2:ae52901630fc:

/*
 * Copyright (c) 2011 Toshihisa T
 * Released under the MIT License: http://mbed.org/license/mit
 */

#include "mbed.h"
#include "INA226.hpp"

Serial debug(USBTX,USBRX);
DigitalOut myled(LED1);
I2C i2c(p28,p27);
INA226 VCmonitor(i2c);

int main() {
    i2c.start();
    unsigned short val;
    double V,C;
    int count = 1;

    debug.format(8,ParityNone,1);
    debug.baud(9600);
    debug.printf("VCmonitor INA226 TEST Program. (BUILD:[" __DATE__ "/" __TIME__ "])\n\r");

    if(!VCmonitor.isExist()){
        debug.printf("VCmonitor NOT FOUND\n\r");
        while(1){}
    }
    debug.printf("VCmonitor FOUND\n");

    val = 0;
    if(VCmonitor.rawRead(0x00,&val) != 0){
        debug.printf("VCmonitor READ ERROR\n");
        while(1){}
    }
    debug.printf("VCmonitor Reg 0x00 : 0x%04x\n",val);

    VCmonitor.setCurrentCalibration();

    while(1) {
        if((VCmonitor.getVoltage(&V) == 0) && (VCmonitor.getCurrent(&C) == 0)){
            debug.printf("%d,V,%f,C,%f\n\r",count,V,C);
        }
        myled = 1;
        wait(0.5);
        myled = 0;
        wait(0.5);
        count++;
    }
    i2c.stop();
}