First commit - WIP

This commit is contained in:
rxf
2024-07-06 00:39:35 +02:00
commit 346abc2415
13 changed files with 533 additions and 0 deletions

19
src/weifi.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef WEIFI_H
#define WEIFI_H
#include <WiFi.h>
#include "main.h"
#ifdef WEIFI
const char* ssid = "Mizar";
const char* password = "RingNebelM57";
#endif
// #warning "You need to set the SSID and PASSWORD in weifi.h"
void connectToWifi();
void WiFiEvent(WiFiEvent_t event);
#endif