Files
IoTManager/include/SSDP.h

8 lines
195 B
C
Raw Normal View History

2020-08-28 23:18:18 +03:00
#pragma once
2020-08-30 00:12:11 +03:00
#ifdef SSDP
2020-08-29 15:15:38 +03:00
#include <Arduino.h>
2020-08-28 23:18:18 +03:00
extern void SsdpInit();
extern String xmlNode(String tags, String data);
2020-08-30 00:12:11 +03:00
extern String decToHex(uint32_t decValue, byte desiredStringLength);
#endif