mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-03 09:49:32 +02:00
11 lines
149 B
C++
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
|