mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
18 lines
301 B
C++
18 lines
301 B
C++
#pragma once
|
|
|
|
#include "service/wifi/Wifi.h"
|
|
#include "service/wifi/WifiSettings.h"
|
|
|
|
namespace tt::app::wificonnect {
|
|
|
|
/**
|
|
* View's state
|
|
*/
|
|
typedef struct {
|
|
service::wifi::settings::WifiApSettings settings;
|
|
bool connection_error;
|
|
bool is_connecting;
|
|
} WifiConnectState;
|
|
|
|
} // namespace
|