Skip to content

lexus2k/embedded-esp32-component-udp_logging

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UDP Logging for esp32

How To

Just include the component into your project, include the header file and call udp_logging_init()

#include "udp_logging.h"

udp_logging_init( "192.168.0.108", 1337, NULL );

To disable logger, use udp_logging_free()

udp_logging_free();

On the server execute the logging_server.py file using Python v3:

$ python3 logging_server.py

License

This code is licensed under the Apache License v2.0

Releases

No releases published

Packages

No packages published

Languages

  • C 79.8%
  • Python 19.0%
  • Makefile 1.2%