【类 型】:style

【主	题】:没有改动
【描	述】:
	[原因]:
	[过程]:
	[影响]:
【结	束】

# 类型 包含:
# feat:新功能(feature)
# fix:修补bug
# docs:文档(documentation)
# style: 格式(不影响代码运行的变动)
# refactor:重构(即不是新增功能,也不是修改bug的代码变动)
# test:增加测试
# chore:构建过程或辅助工具的变动
This commit is contained in:
tk 2024-07-04 14:25:50 +08:00
parent 07d3038579
commit ed072093d8
3 changed files with 6 additions and 7 deletions

View File

@ -47,6 +47,7 @@ public:
String getMacAdd(); String getMacAdd();
/*wifi*/ /*wifi*/
void connectWifi(); void connectWifi();
bool checkWiFiStatus();
/*mqtt*/ /*mqtt*/
PubSubClient *mqttClient; // 指向 mqtt服务器连接 对象 PubSubClient *mqttClient; // 指向 mqtt服务器连接 对象
void connectMqtt(String topicSub); void connectMqtt(String topicSub);
@ -77,7 +78,6 @@ public:
void Camera_action_ret(); void Camera_action_ret();
void Camera_action_move(uint8_t vpitch, uint8_t vyaw); void Camera_action_move(uint8_t vpitch, uint8_t vyaw);
void Camera_action_zoom(uint8_t vzoom); void Camera_action_zoom(uint8_t vzoom);
bool checkWiFiStatus();
private: private:
char *ssid; // wifi帐号 char *ssid; // wifi帐号

View File

@ -638,7 +638,6 @@ void pubThread()
// pingNetTest(); // pingNetTest();
} }
/** /**
* @description: mavlink * @description: mavlink
*/ */