potion_party_leds/main/network.h

15 lines
253 B
C

///
//
// 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
void wifi_init();
void softap_init();
#endif