twinkl-esp/include/user_config.h

13 lines
236 B
C

#ifndef _USER_CONFIG_
#define _USER_CONFIG_
#include <stdint.h>
#include "password.h"
static const char wifi_ssid[] = WIFI_SSID;
static const char wifi_password[] = WIFI_PASSWORD;
static const const uint16_t udp_port = 1337;
#endif