<div dir="ltr">Going by this[1], it would seem that the 21 pin corresponds with GPIO on pin 21 of the max.  However, when I run the following code, I get an error: "ValueError: Invalid GPIO pin specified"<br><br><div>#!/usr/bin/env python<br></div><div><br></div><div>import mraa</div><div>import time</div><div><br></div><div>led = mraa.Gpio(21)</div><div><br></div><div>led.dir(mraa.DIR_OUT)</div><div><br></div><div>while True:</div><div>        led.write(1)</div><div>        time.sleep(1)</div><div>        led.write(0)</div><div>        time.sleep(1)</div><div><br></div>Can anyone tell me why my pin is invalid?<br><br>[1] - <a href="http://iotdk.intel.com/docs/master/mraa/minnowmax.html">http://iotdk.intel.com/docs/master/mraa/minnowmax.html</a></div>