-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Closed
Labels
Architecture: AVRApplies only to the AVR microcontrollers (Uno, etc.)Applies only to the AVR microcontrollers (Uno, etc.)Component: CoreRelated to the code for the standard Arduino APIRelated to the code for the standard Arduino APIType: DuplicateAnother item already exists for this topicAnother item already exists for this topic
Description
I had an application which used all the pins of a Nano. I could not get a digital output on A6 and A7 which I had set with
#define onePin 20
#define anotherPin 21
void setup(){
pinMode(onePin, OUTPUT);
pinMode(anotherPin, OUTPUT);
}
etc...
The IDE reports no error but
digitalWrite(onePin, HIGH);
or
digitalWrite(anotherPin, HIGH);
does absolutely nothing.
It all works up to D19 (A5). Not with A6 or A7.
Rajiv
Metadata
Metadata
Assignees
Labels
Architecture: AVRApplies only to the AVR microcontrollers (Uno, etc.)Applies only to the AVR microcontrollers (Uno, etc.)Component: CoreRelated to the code for the standard Arduino APIRelated to the code for the standard Arduino APIType: DuplicateAnother item already exists for this topicAnother item already exists for this topic