mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-20 10:25:06 +00:00
12 lines
319 B
C++
12 lines
319 B
C++
#pragma once
|
|
|
|
#include "WifiConnect.h"
|
|
|
|
namespace tt::app::wificonnect {
|
|
|
|
void state_set_radio_error(WifiConnect* wifi, bool error);
|
|
void state_set_ap_settings(WifiConnect* wifi, const service::wifi::settings::WifiApSettings* settings);
|
|
void state_set_connecting(WifiConnect* wifi, bool is_connecting);
|
|
|
|
} // namespace
|