Battery-Emulator/test/emul/WiFi.h
2025-07-26 16:30:13 +03:00

11 lines
149 B
C++

#ifndef WIFI_H
#define WIFI_H
#include <stdint.h>
class IPAddress {
public:
IPAddress(uint8_t a, uint8_t b, uint8_t c, uint8_t d) {}
};
#endif