Re this thread: https://forums.adafruit.com/viewtopic.php?t=203518 Pinout page indicates PWM out is available on `RX` and `TX`: https://learn.adafruit.com/adafruit-feather-m4-express-atsamd51/pinouts Test sketch: ```cpp #define PWM_PIN 0 void setup() { pinMode(PWM_PIN, OUTPUT); analogWrite(PWM_PIN, 128); } void loop() { } ``` Setting `PWM_PIN` to either `0` or `1` produces no output on either `RX` or `TX` (resp).