N4 Flight Software N4
Flight software used for the N4 flight computers
Loading...
Searching...
No Matches
wifi-config.h
1
2#ifndef WIFI_CONFIG_H
3#define WIFI_CONFIG_H
4
5#include <Arduino.h>
6#include "WiFiManager.h"
7
8class WIFIConfig {
9public:
10 uint8_t WifiConnect();
11};
12
13#endif // WIFI_CONFIG_H
Definition wifi-config.h:8
uint8_t WifiConnect()
allow connection to WiFi
Definition wifi-config.cpp:21