initial commit

This commit is contained in:
technyon
2022-03-22 21:10:43 +01:00
commit b5e57da5a0
531 changed files with 180736 additions and 0 deletions

36
main.cpp Normal file
View File

@@ -0,0 +1,36 @@
#include "Arduino.h"
#include "Network.h"
#include "Nuki.h"
#define ESP32
Network network;
Nuki nuki("door", 0);
void setup()
{
network.initialize();
// nuki.initialize();
/*
Serial.begin(115200);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.println("Connecting to WiFi..");
}
Serial.println("Connected to the WiFi network");
*/
}
void loop()
{
network.update();
// nuki.update();
}