OpenIris/ESP/include/WifiHandler.h
Zdzislaw Goik b788823375
Feature/refactor architecture (#5)
* Refactor everything under one namespace, turn most things into classes, add support for selecting ROI in cameraHandler, add state management

* Remove unsued main.py file - other projects are working on that implementation
2022-03-20 15:24:28 +01:00

9 lines
172 B
C++

#pragma once
#include <WiFi.h>
#include "pinout.h"
namespace OpenIris {
namespace WiFiHandler {
void setupWifi(const char *ssid, const char *password);
}
}