Hi there,
iam using the Orion Me Board. i tried to use A7 from J8 to use it as digital output.
I tried the following example:
void setup()
{
pinMode(A7, OUTPUT); // sets the digital pin as output
}
void loop()
{
digitalWrite(A7, HIGH); // sets the LED on
}
but i was not able to measure 5V between ground the A7. So what iam doing wrong?