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
In Arduino nano every seems to be changed pinouts of PIN_A7 and PIN_A6 in ATMEGA328 compability mode. A7 works as A6 and vice versa.
The text was updated successfully, but these errors were encountered:
Now I solve that bug by adding compiler directive:
#ifdef FIX_BUG_NANO_EVERY #define outVoltagePin PIN_A7 //A7 as real A6 pin output #else #define outVoltagePin PIN_A6 #endif
Sorry, something went wrong.
3737f45
Hi @elektros230 , thanks for reporting! I fixed the issue in 3737f45 , it will be included in upcoming core 1.8.3 release
No branches or pull requests
In Arduino nano every seems to be changed pinouts of PIN_A7 and PIN_A6 in ATMEGA328 compability mode.
A7 works as A6 and vice versa.
The text was updated successfully, but these errors were encountered: