Bluetooth Low Energy for Smart Plug

Dependencies:   BLE_API mbed nRF51822

Fork of SmartPlugBLE by Pavit Noinongyao

SPCommunication.h

Committer:
Slepnir
Date:
2015-07-07
Revision:
0:25ad6eba7916
Child:
2:6db5c9a2894c

File content as of revision 0:25ad6eba7916:

#ifndef SP_COMMUNICATION_H
#define SP_COMMUNICATION_H

class SPCommunication
{
    public:
        unsigned long getVoltage(){return 220;}
        unsigned long getCurrent(){return 10;}
        unsigned long getPower(){return 10;}
        unsigned long getPowerFactor(){return 10;}
};

#endif