put the constants in a header file

main
xad1 3 years ago
parent 530be3b11e
commit daefc43fff

@ -0,0 +1,12 @@
#include <Arduino.h>
/**
* Enter WiFi network and Proxmox information
*/
const char* WIFI_SSID = "";
const char* WIFI_PASS = "";
const String PROXMOX_ADDRESS = "";
const String PROXMOX_TOKEN_USER = "";
const String PROXMOX_TOKEN_NAME = "";
const String PROXMOX_TOKEN_SECRET = "";

@ -3,13 +3,8 @@
#include <WiFi.h>
#include <HTTPClient.h>
#include <odroid_go.h>
#include <server.hpp>
const char* WIFI_SSID = "";
const char* WIFI_PASS = "";
const String PROXMOX_ADDRESS = "";
const String PROXMOX_TOKEN_USER = "";
const String PROXMOX_TOKEN_NAME = "";
const String PROXMOX_TOKEN_SECRET = "";
int selectedItem = 0;

Loading…
Cancel
Save