OmLog.h

Includes:
<ESP8266WiFi.h>
<WiFi.h>

Introduction

Use the links in the table of contents to the left to access the documentation.



Functions

ipAddressToString

Utility to convert an ESP8266 ip address to a printable string.


ipAddressToString


Utility to convert an ESP8266 ip address to a printable string.

const char *ipAddressToString(
    IPAddress ip);  

Macro Definitions

OMERR

A formatted printing helper. Like OMLOG, but has E for error.

OMLOG

A formatted printing helper. It adds the file and line number to the output.


OMERR


A formatted printing helper. Like OMLOG, but has E for error.

#define OMERR(_args...) OmLog::logS(__FILE__, __LINE__, 'E', _args) 

OMLOG


A formatted printing helper. It adds the file and line number to the output.

#define OMLOG(_args...) OmLog::logS(__FILE__, __LINE__, '*', _args)