Best Answer CW2, 07 April 2014 - 06:46 AM
You can access those pins via Cpu.Pin enumeration - the ports are treated as consecutive array of pins, so PA is 0 .. 15, PB 16 .. 31, PC 32 .. 47 etc.:
var pa4 = (Cpu.Pin)( 0 + 4); var pb1 = (Cpu.Pin)(16 + 1); var pc0 = (Cpu.Pin)(16 + 0); var pc8 = (Cpu.Pin)(32 + 8);Go to the full post