add new calliope image, add analog pins on RX/TX grove

This commit is contained in:
Matthias L. Jugel
2017-02-20 11:13:00 +01:00
parent df64034519
commit bc8b97faba
3 changed files with 849 additions and 0 deletions

View File

@ -294,6 +294,8 @@ declare namespace motors {
C4 = 10, // MICROBIT_ID_IO_P3
C5 = 11, // MICROBIT_ID_IO_P4
C6 = 17, // MICROBIT_ID_IO_P10
C16 = 9, // MICROBIT_ID_IO_P2
C17 = 15, // MICROBIT_ID_IO_P8
MIC = 50, // MICROBIT_ID_IO_P21
}

View File

@ -26,6 +26,8 @@ enum class AnalogPin {
C4 = MICROBIT_ID_IO_P3, // LED matrix C1
C5 = MICROBIT_ID_IO_P4, // LED matrix C2
C6 = MICROBIT_ID_IO_P10, // LED matrix C3
C16 = MICROBIT_ID_IO_P2, // RX
C17 = MICROBIT_ID_IO_P8, // TX
MIC = MICROBIT_ID_IO_P21 // microphone
};