potion_party_leds/main/network.h

15 lines
253 B
C
Raw Normal View History

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.
//
///
#ifndef _potion_party_network_h
#define _potion_party_network_h
2023-09-15 06:21:00 +00:00
void wifi_init();
void softap_init();
2023-09-15 06:21:00 +00:00
#endif