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
I tried a lot things wrote in this Issue: esp8266/Arduino#1426 My workaround;
ETS_GPIO_INTR_DISABLE(); // interrupt disablen wegen softuart, da sonst wdt reset möglich IPAddress server(149,154,167,198); .... client.println("Connection: close"); /// zum speicher frei geben ETS_GPIO_INTR_ENABLE(); // interrupt enablen/disablen wegen softuart, da sonst wdt reset möglich
In my Telegram-bot Lib. (Connection: close remove also a Bug if you try to send an Email an with Telegrambot usage)
With that workaround there is missing Serial Data. So i do this in my Sketch:
for (int l = 0; l < 20 ; l++) { error = my_sds.read(&p25,&p10); if (!error) { break; } else { p25=-2; p10=-2; } delay(100); }
TelegramBot Lib: https://github.com/Gianbacchio/ESP8266-TelegramBot
The text was updated successfully, but these errors were encountered:
@Macci0 Can we close this issue? I can only see a problem with the TelegramBot and WifiClient, but not with the SDS011 lib itself.
Sorry, something went wrong.
No branches or pull requests
I tried a lot things wrote in this Issue:
esp8266/Arduino#1426
My workaround;
In my Telegram-bot Lib.
(Connection: close remove also a Bug if you try to send an Email an with Telegrambot usage)
With that workaround there is missing Serial Data. So i do this in my Sketch:
TelegramBot Lib:
https://github.com/Gianbacchio/ESP8266-TelegramBot
The text was updated successfully, but these errors were encountered: