For Hepta-Sat Lite
HeptaBattery.h@6:869e6fe3ba64, 2017-11-15 (annotated)
- Committer:
- HEPTA
- Date:
- Wed Nov 15 02:38:28 2017 +0000
- Revision:
- 6:869e6fe3ba64
- Parent:
- 5:15a6a4425889
- Child:
- 8:92dcd75454b5
HeptaBattery
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
hepta2ume | 0:1682fa22a51e | 1 | #ifndef MBED_HEPTABATTERY_H |
hepta2ume | 0:1682fa22a51e | 2 | #define MBED_HEPTABATTERY_H |
hepta2ume | 0:1682fa22a51e | 3 | #include "mbed.h" |
hepta2ume | 0:1682fa22a51e | 4 | #include "PowerControl/PowerControl.h" |
hepta2ume | 0:1682fa22a51e | 5 | #include "PowerControl/EthernetPowerControl.h" |
hepta2ume | 0:1682fa22a51e | 6 | |
hepta2ume | 0:1682fa22a51e | 7 | class HeptaBattery{ |
hepta2ume | 0:1682fa22a51e | 8 | public: |
hepta2ume | 0:1682fa22a51e | 9 | HeptaBattery( |
hepta2ume | 0:1682fa22a51e | 10 | PinName bat, |
hepta2ume | 0:1682fa22a51e | 11 | PinName bat_ct |
hepta2ume | 0:1682fa22a51e | 12 | ); |
hepta2ume | 0:1682fa22a51e | 13 | void vol(float* bt);//バッテリー電圧監視 |
HEPTA | 4:65dc53760aa0 | 14 | void shut_down_regulator();//3.3V供給停止 |
HEPTA | 6:869e6fe3ba64 | 15 | void turn_on_regulator();//3.3V供給 |
HEPTA | 5:15a6a4425889 | 16 | void vol_u16(char* bt_u16);//Battery電圧監視(16進数) |
hepta2ume | 0:1682fa22a51e | 17 | void power_saving_mode(void);//省電力モード |
hepta2ume | 0:1682fa22a51e | 18 | |
hepta2ume | 0:1682fa22a51e | 19 | private: |
hepta2ume | 0:1682fa22a51e | 20 | DigitalOut _bat_ct; |
hepta2ume | 0:1682fa22a51e | 21 | AnalogIn _bat; |
hepta2ume | 0:1682fa22a51e | 22 | }; |
hepta2ume | 0:1682fa22a51e | 23 | |
hepta2ume | 0:1682fa22a51e | 24 | #endif |