The following digital calls work, but the analog calls don’t. The voltage on the pin remains 0v with the analog calls. Do I need to configure the pins more than I’ve shown below? TY
Works:
digitalWrite(9, HIGH);
digitalWrite(8, LOW);
The following doesn’t work (but does work on an UNO RedBoard):
pinMode(9, OUTPUT);
pinMode(8, OUTPUT);
analogWrite(9, 255);
analogWrite(8, 0);