This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import subprocess | |
import time | |
import sys | |
import win32con | |
import win32gui_struct | |
import os | |
try: | |
import winxpgui as win32gui | |
except ImportError: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <esp8266.h> | |
#include "cgiwifi.h" | |
#include "config.h" | |
#include "mqtt.h" | |
#ifdef MQTTCLIENT_DBG | |
#define DBG_MQTTCLIENT(format, ...) os_printf(format, ## __VA_ARGS__) | |
#else | |
#define DBG_MQTTCLIENT(format, ...) do { } while(0) | |
#endif |
NewerOlder