'WIO_5S_DOWM' was not declared in this scope

The WIO_KEY and WIO_5S contstants… Where are they defined?

I removed Arduino IDE from my Ubuntu box and reinstalled it, along with the Wio Boards and Adafruit DMA Zero library.
My code:
pinMode(WIO_KEY_A, INPUT_PULLUP);
pinMode(WIO_KEY_B, INPUT_PULLUP);
pinMode(WIO_KEY_C, INPUT_PULLUP);
pinMode(WIO_5S_UP, INPUT_PULLUP);
pinMode(WIO_5S_DOWM, INPUT_PULLUP);
pinMode(WIO_5S_LEFT, INPUT_PULLUP);
pinMode(WIO_5S_RIGHT, INPUT_PULLUP);
pinMode(WIO_5S_PRESS, INPUT_PULLUP);
Gives compile errors:

‘WIO_5S_DOWM’ was not declared in this scope

Where are these defined?

Hi @mischko

This is a typo in the code, have updated the corrected version. It should be WIO_5S_DOWN

Thanks!
Now I’ll move it forward.