15 lines
203 B
C
15 lines
203 B
C
|
#ifndef SettingValue_h
|
||
|
#define SettingValue_h
|
||
|
|
||
|
#include <Arduino.h>
|
||
|
|
||
|
#ifdef ESP8266
|
||
|
#include <ESP8266WiFi.h>
|
||
|
#endif
|
||
|
|
||
|
namespace SettingValue {
|
||
|
String format(String value);
|
||
|
};
|
||
|
|
||
|
#endif // end SettingValue
|