We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With Arduino IDE 1.6.8 and the 2.1.0 esp code this sketch fails to compile:
#include <ESP8266WiFi.h> #include <PubSubClient.h> WiFiClient wifiClient; PubSubClient client("bla", 1883, callback, wifiClient); void setup() { } void loop() { } void callback(char* topic, byte* payload, unsigned int payloadLength) { }
It gets a compile error saying: 'callback' was not declared in this scope Is this supposed to be working now after #1472 was fixed?
The text was updated successfully, but these errors were encountered:
This is an arduino-builder issue, it affects all cores (not only ESP8266): arduino/arduino-builder#85
Sorry, something went wrong.
Ah I see. Thanks.
No branches or pull requests
With Arduino IDE 1.6.8 and the 2.1.0 esp code this sketch fails to compile:
It gets a compile error saying: 'callback' was not declared in this scope
Is this supposed to be working now after #1472 was fixed?
The text was updated successfully, but these errors were encountered: