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
Hi, is it possible to make the library compatible with esp8266 as well? Maybe just edit the following line of code in ABBAurora.cpp:
serial->begin(19200, SERIAL_8N1, RXGpioPin, TXGpioPin, false, 500);
with
if esp32 then serial->begin(19200, SERIAL_8N1, RXGpioPin, TXGpioPin, false, 500); if esp8266 then serial->begin(???);
The text was updated successfully, but these errors were encountered:
@mttstt ,
I don't have access to an ABB Aurora inverter right now to test. If someone can test, and send PR, I will gladly accept it.
Sorry, something went wrong.
Hi @mttstt , did you get a code set working on ESP8266?
i dont have the skill to convert it, and i looked at your fork, but couldnt compile it, due to "Serial2" not being defined.
any help would be good 👍 cheers
No branches or pull requests
Hi, is it possible to make the library compatible with esp8266 as well?
Maybe just edit the following line of code in ABBAurora.cpp:
with
The text was updated successfully, but these errors were encountered: