21 lines
176 B
C
21 lines
176 B
C
|
#ifndef KIMODEM_WIFI_METER_H
|
||
|
#define KIMODEM_WIFI_METER_H
|
||
|
|
||
|
#include <Arduino.h>
|
||
|
|
||
|
|
||
|
namespace Meter {
|
||
|
|
||
|
|
||
|
void Begin();
|
||
|
void Enable();
|
||
|
void Disable();
|
||
|
void Update();
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|