- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 CPP 的新手并尝试“重构”此示例代码 https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFi/examples/WPS/WPS.ino进入一个名为 的类
ApiClient`。然后我想能够做这样的事情:
apiClient = ApiClient(myUrl);
apiClient.sendValue(key, value);
除 wifi.onEvent(WiFiEvent);
函数调用外,所有内容均可编译。当我将整个示例代码复制粘贴到我的 main.cpp
文件中时,该示例正在运行。当我使用我的“重构”方法时,wifi.onEvent(WifiEvent)
正在提示。
确切的错误信息:
没有重载函数“WiFiClass::onEvent”的实例匹配参数列表——参数类型是:(void (system_event_id_t event, system_event_info_t info))——对象类型是:WiFiClass
我知道 onEvent
函数通常有两个参数,但为什么它在示例代码中有效?我该如何解决?
这是我目前所拥有的:
main.cpp
#include "WiFi.h"
#include <esp_wps.h>
#include <Hythe22.h>
#include <ApiClient.h>
#define DHTPIN 14
// ?accessKey=ist_NJu3tjPIBCYeJd6DGGBxzq14LvungHoK&bucketKey=B37GHBNK5HL3
#define API_URL "https://groker.init.st/api/events";
Hythe22 dht(DHTPIN);
ApiClient apiClient;
uint64_t chipid;
#define ESP_DEVICE_NAME String(chipid)
void setup()
{
String apiUrl = "https://myApi.Endpoint.com/event";
Serial.begin(115200);
delay(100);
Serial.println();
}
void loop()
{
String temp = String(dht.temperature);
Serial.println("TEMP:" + temp);
apiClient.sendValue("temperature", temp);
String hum = String(dht.humidity);
Serial.println("HUM:" + hum);
apiClient.sendValue("humidity", hum);
}
ApiClient.h
/*
===========================================================
*/
#ifndef WebClient_h
#define WebClient_h
#include <Arduino.h>
#include <WiFi.h>
#include "esp_wps.h"
#include <HTTPClient.h>
class ApiClient
{
public:
ApiClient(String apiUrl);
void sendValue(String key, String value);
void wpsInitConfig();
void WiFiEvent(WiFiEvent_t event, system_event_info_t info);
String wpspin2string(uint8_t a[]);
String requestUrl;
String _apiUrl;
int chipid;
private:
};
#endif
ApiClient.cpp
/*
===========================================================
*/
#include <Arduino.h>
#include <ApiClient.h>
#include <WiFi.h>
#include <esp_wps.h>
#include <HTTPClient.h>
int chipid;
#define ESP_WPS_MODE WPS_TYPE_PBC
#define ESP_MANUFACTURER "ESPRESSIF"
#define ESP_MODEL_NUMBER "ESP32"
#define ESP_MODEL_NAME "ESPRESSIF IOT"
#define ESP_DEVICE_NAME "ESP STATION"
String _apiUrl;
HTTPClient http;
String requestUrl;
WiFiClass wifi;
static esp_wps_config_t config;
ApiClient::ApiClient(String apiUrl)
{
Serial.begin(115200);
delay(10);
Serial.println();
wifi.onEvent(WiFiEvent);
wifi.mode(WIFI_MODE_STA);
Serial.println("Starting WPS");
wpsInitConfig();
esp_wifi_wps_enable(&config);
esp_wifi_wps_start(0);
}
void sendValue(String key, String value)
{
HTTPClient http;
Serial.println("key:" + key);
Serial.println("value:" + value);
requestUrl = _apiUrl + "?" + key + "=" + value;
// Serial.println(apiUrl);
http.begin(requestUrl);
int httpCode = http.GET();
if (httpCode > 0)
{
Serial.printf("[HTTP] GET... code: %d\n", httpCode);
//file found at server --> on unsucessful connection code will be -1
if (httpCode == HTTP_CODE_OK)
{
String payload = http.getString();
Serial.println(payload);
}
}
else
{
Serial.printf("[HTTP] GET... failed, error: %s\n", http.errorToString(httpCode).c_str());
}
http.end();
}
void ApiClient::wpsInitConfig()
{
config.crypto_funcs = &g_wifi_default_wps_crypto_funcs;
config.wps_type = ESP_WPS_MODE;
strcpy(config.factory_info.manufacturer, ESP_MANUFACTURER);
strcpy(config.factory_info.model_number, ESP_MODEL_NUMBER);
strcpy(config.factory_info.model_name, ESP_MODEL_NAME);
strcpy(config.factory_info.device_name, ESP_DEVICE_NAME);
}
String wpspin2string(uint8_t a[])
{
char wps_pin[9];
for (int i = 0; i < 8; i++)
{
wps_pin[i] = a[i];
}
wps_pin[8] = '\0';
return (String)wps_pin;
}
void WiFiEvent(WiFiEvent_t event, system_event_info_t info){
switch(event){
case SYSTEM_EVENT_STA_START:
Serial.println("Station Mode Started");
break;
case SYSTEM_EVENT_STA_GOT_IP:
Serial.println("Connected to :" + String(WiFi.SSID()));
Serial.print("Got IP: ");
Serial.println(WiFi.localIP());
break;
case SYSTEM_EVENT_STA_DISCONNECTED:
Serial.println("Disconnected from station, attempting reconnection");
WiFi.reconnect();
break;
case SYSTEM_EVENT_STA_WPS_ER_SUCCESS:
Serial.println("WPS Successfull, stopping WPS and connecting to: " + String(WiFi.SSID()));
esp_wifi_wps_disable();
delay(10);
WiFi.begin();
break;
case SYSTEM_EVENT_STA_WPS_ER_FAILED:
Serial.println("WPS Failed, retrying");
esp_wifi_wps_disable();
esp_wifi_wps_enable(&config);
esp_wifi_wps_start(0);
break;
case SYSTEM_EVENT_STA_WPS_ER_TIMEOUT:
Serial.println("WPS Timedout, retrying");
esp_wifi_wps_disable();
esp_wifi_wps_enable(&config);
esp_wifi_wps_start(0);
break;
case SYSTEM_EVENT_STA_WPS_ER_PIN:
Serial.println("WPS_PIN = " + wpspin2string(info.sta_er_pin.pin_code));
break;
default:
break;
}
}
提前致谢
最佳答案
我查看了 example链接在 OP 的问题中。
相关部分是
void setup(){
// contents skipped
WiFi.onEvent(WiFiEvent);
// contents skipped
}
特此WiFiEvent
是上面定义的自由函数:
void WiFiEvent(WiFiEvent_t event, system_event_info_t info){
switch(event){
// some cases to handle various events
default:
break;
}
}
OP 希望将此事件处理程序重构到他的 class ApiClient
中:
class ApiClient
{
public:
ApiClient(String apiUrl);
void sendValue(String key, String value);
void wpsInitConfig();
void WiFiEvent(WiFiEvent_t event, system_event_info_t info);
String wpspin2string(uint8_t a[]);
String requestUrl;
String _apiUrl;
int chipid;
private:
};
本质区别在于WiFiEvent()
因此成为成员函数,OP 得到了报告的错误
no instance of overloaded function "WiFiClass::onEvent" matches the argument list -- argument types are: (void (system_event_id_t event, system_event_info_t info)) -- object type is: WiFiClass
出于好奇,我在github项目中挖了一下,终于找到了WiFiClass::onEvent()
的声明。 – 它继承自 class WiFiGenericClass
:
class WiFiGenericClass
{
public:
WiFiGenericClass();
wifi_event_id_t onEvent(WiFiEventCb cbEvent, system_event_id_t event = SYSTEM_EVENT_MAX);
wifi_event_id_t onEvent(WiFiEventFuncCb cbEvent, system_event_id_t event = SYSTEM_EVENT_MAX);
wifi_event_id_t onEvent(WiFiEventSysCb cbEvent, system_event_id_t event = SYSTEM_EVENT_MAX);
// a lot more - skipped
};
因此,实际上有三个onEvent()
的声明。有两个参数,因此每个的第二个nd 参数都有一个默认参数。 (因此,示例中只有一个参数的调用 WiFi.onEvent(WiFiEvent);
是可以的。)
为了彻底解决这个问题,我查找了WiFiEventCb
。 , WiFiEventFuncCb
, 和 WiFiEventSysCb
并在 class WiFiGenericClass
的同一个头文件中找到它们:
typedef void (*WiFiEventCb)(system_event_id_t event);
typedef std::function<void(system_event_id_t event, system_event_info_t info)> WiFiEventFuncCb;
typedef void (*WiFiEventSysCb)(system_event_t *event);
这三个是什么typedef
意思是:
WiFiEventCb
... 指向返回 void
的(自由)函数的函数指针并且有一个类型为 system_event_id_t
的参数WiFiEventFuncCb
...一个std::function
任何返回的对象void
并且有两个类型的参数 system_event_id_t
和 system_event_info_t
WiFiEventSysCb
... 指向返回 void
的(自由)函数的函数指针并且有一个类型为 system_event_id_t*
的参数.显然,该示例使用了 2nd onEvent()
因为它是唯一一个接受带有两个参数的函数。
支持 std::function
非常好,因为它接受任何具有匹配签名的可调用对象:
因此,要生成 ApiClient::WiFiEvent()
兼容,有两种选择:
ApiClient::WiFiEvent()
作为静态成员函数ApiClient::WiFiEvent()
与调用它的实例。第一个选项限制了 ApiClient::WiFiEvent()
的可用性作为static
成员函数在没有 resp 实例的情况下被调用。类(class)。缺点 – 成员函数中没有可用的实例(即禁止显式或隐式访问 this
),这可能会或可能不会被接受。
第二个选项可以通过使用 lambda 轻松实现。作为适配器。为此,事件处理程序在 ApiClient::ApiClient()
中注册必须更改:
//ERROR: wifi.onEvent(WiFiEvent);
//Instead:
wifi.onEvent(
[this](WiFiEvent_t event, system_event_info_t info) {
this->WiFiEvent(event, info);
});
这有效地注册了一个具有捕获 this
的已接受签名的仿函数的 ApiClient
这样就可以完成对带有实例的成员函数的有效调用。 lambda 的返回类型隐式声明为 void
因为没有 return
在 lambda 的主体中。
最后,我想提一下,在 lambda 中进行捕获是一件必须谨慎完成的事情。如果wifi
超过生命周期this
(即 ApiClient
的实例)然后它可以调用 ApiClient::WiFiEvent()
没有有效的 this
-指针。
为了使其“防弹”,ApiClient
的析构函数可以调用removeEvent()
使用 wifi_event_id_t
onEvent()
返回. (为此应将其存储在 ApiClient
中。)
关于c++ - 将示例代码重构到类中不会引发重载函数的实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54744985/
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Sample data for IPv6? 除了 wireshark 在其网站上提供的内容之外,是否有可以下
我正在寻找可以集成到现有应用程序中并使用多拖放功能的示例或任何现成的解决方案。我在互联网上找到的大多数解决方案在将多个项目从 ListBox 等控件拖放到另一个 ListBox 时效果不佳。谁能指出我
我是 GATE Embedded 的新手,我尝试了简单的示例并得到了 NoClassDefFoundError。首先我会解释我尝试了什么 在 D:\project\gate-7.0 中下载并提取 Ga
是否有像 Eclipse 中的 SWT 示例那样的多合一 JFace 控件示例?搜索(在 stackoverflow.com 上使用谷歌搜索和搜索)对我没有帮助。 如果它是一个独立的应用程序或 ecl
我找不到任何可以清楚地解释如何通过 .net API(特别是 c#)使用谷歌计算引擎的内容。有没有人可以指点我什么? 附言我知道 API 引用 ( https://developers.google.
最近在做公司的一个项目时,客户需要我们定时获取他们矩阵系统的数据。在与客户进行对接时,提到他们的接口使用的目前不常用的BASIC 认证。天呢,它好不安全,容易被不法人监听,咋还在使用呀。但是没办法呀,
最近在做公司的一个项目时,客户需要我们定时获取他们矩阵系统的数据。在与客户进行对接时,提到他们的接口使用的目前不常用的BASIC 认证。天呢,它好不安全,容易被不法人监听,咋还在使用呀。但是没办法呀,
我正在尝试为我的应用程序设计配置文件格式并选择了 YAML。但是,这(显然)意味着我需要能够定义、解析和验证正确的 YAML 语法! 在配置文件中,必须有一个名为 widgets 的集合/序列。 .这
你能给我一个使用 pysmb 库连接到一些 samba 服务器的例子吗?我读过有类 smb.SMBConnection.SMBConnection(用户名、密码、my_name、remote_name
linux服务器默认通过22端口用ssh协议登录,这种不安全。今天想做限制,即允许部分来源ip连接服务器。 案例目标:通过iptables规则限制对linux服务器的登录。 处理方法:编
我一直在寻找任何 PostProjectAnalysisTask 工作代码示例,但没有看。 This页面指出 HipChat plugin使用这个钩子(Hook),但在我看来它仍然使用遗留的 Po
我发现了 GWT 的 CustomScrollPanel 以及如何自定义滚动条,但我找不到任何示例或如何设置它。是否有任何示例显示正在使用的自定义滚动条? 最佳答案 这是自定义 native 滚动条的
我正在尝试开发一个 Backbone Marionette 应用程序,我需要知道如何以最佳方式执行 CRUD(创建、读取、更新和销毁)操作。我找不到任何解释这一点的资源(仅适用于 Backbone)。
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题?通过 editing this post 添加详细信息并澄清问题. 去年关闭。 Improve this
我需要一个提交多个单独请求的 django 表单,如果没有大量定制,我找不到如何做到这一点的示例。即,假设有一个汽车维修店使用的表格。该表格将列出商店能够进行的所有可能的维修,并且用户将选择他们想要进
我有一个 Multi-Tenancy 应用程序。然而,这个相同的应用程序有 liquibase。我需要在我的所有数据源中运行 liquibase,但是我不能使用这个 Bean。 我的应用程序.yml
我了解有关单元测试的一般思想,并已在系统中发生复杂交互的场景中使用它,但我仍然对所有这些原则结合在一起有疑问。 我们被警告不要测试框架或数据库。好的 UI 设计不适合非人工测试。 MVC 框架不包括一
我正在使用 docjure并且它的 select-columns 函数需要一个列映射。我想获取所有列而无需手动指定。 如何将以下内容生成为惰性无限向量序列 [:A :B :C :D :E ... :A
$condition使用说明和 $param在 findByAttributes在 Yii 在大多数情况下,这就是我使用 findByAttributes 的方式 Person::model()->f
我在 Ubuntu 11.10 上安装了 qtcreator sudo apt-get install qtcreator 安装的版本有:QT Creator 2.2.1、QT 4.7.3 当我启动
我是一名优秀的程序员,十分优秀!