2023-09-19 08:34:06 +00:00
|
|
|
///
|
|
|
|
//
|
|
|
|
// server.h manages the WiFi access point created for the quests.
|
|
|
|
// wifi_init() and softap_init() HAVE TO be called in order.
|
|
|
|
//
|
|
|
|
///
|
|
|
|
|
2023-09-28 12:31:14 +00:00
|
|
|
#ifndef _potion_party_network_h
|
|
|
|
#define _potion_party_network_h
|
2023-09-15 06:21:00 +00:00
|
|
|
|
2023-09-28 12:31:14 +00:00
|
|
|
void wifi_init();
|
|
|
|
void softap_init();
|
2023-09-15 06:21:00 +00:00
|
|
|
|
2023-09-28 12:31:14 +00:00
|
|
|
#endif
|