Files
IoTManager/include/SSDP.h

9 lines
199 B
C
Raw Normal View History

2020-09-02 22:34:49 +03:00
#pragma once
2020-10-18 00:07:57 +03:00
2020-09-02 22:34:49 +03:00
#include <Arduino.h>
2020-10-18 00:07:57 +03:00
2020-09-04 18:58:03 +03:00
#ifdef SSDP_EN
2020-09-02 22:34:49 +03:00
extern void SsdpInit();
extern String xmlNode(String tags, String data);
2020-09-03 23:29:34 +03:00
extern String decToHex(uint32_t decValue, byte desiredStringLength);
#endif