prototype: Change pins to the prototype ones.

This commit is contained in:
RedHawk
2023-06-09 11:10:21 +03:00
parent 2e496a23c9
commit 2b785e5b0c
3 changed files with 13 additions and 13 deletions

View File

@@ -20,9 +20,9 @@ public:
private:
Event* message;
ThreadCommon::QueueManager* _qm;
DigitalIoPin signal[3] = { { 0, 1, true, true, false, true, PIN_INT0_IRQn}, //SW1
{ 0, 16, true, true, false, true, PIN_INT1_IRQn}, //SW2
{ 1, 8, true, false, false, true, PIN_INT2_IRQn} };
DigitalIoPin signal[3] = { { 1, 18, true, true, false, true, PIN_INT0_IRQn}, //SW1 //Right //0 1
{ 2, 12, true, true, false, true, PIN_INT1_IRQn}, //SW2 //Left //0 16
{ 2, 11, true, false, false, true, PIN_INT2_IRQn} }; //Press //1 8
};
void thread_rotary(void* pvParams);