• Home
  • pcDuino
  • WiKi
  • Store
  • Distributors
  • Home
  • pcDuino
  • WiKi
  • Store
  • Distributors
HomepcDuinoArduino-ish ProgramGPIOThe hidden extra GPIOs on pcDuino
Previous Next

The hidden extra GPIOs on pcDuino

Posted by: admin , November 16, 2013

The headers of pcDuino is compatible with Arduino Uno.  However, pcDuino provides an extra set of GPIOs. You can use them in case you want.

The following picture shows where these GPIOs are:

To use them, it is fairely easy. Actually it is exactly same as other pins.

#include <core.h>

#define Relay 23

void setup(){
pinMode(Relay, OUTPUT);

}

void loop(){
digitalWrite(Relay,HIGH);
delay(100);
digitalWrite(Relay, LOW);hai
delay(100);

}

Tags: GPIO

Share!
Tweet

admin

About the author

Leave a Reply Cancel reply

You must be logged in to post a comment.

Category

  • Home
  • pcDuino
  • WiKi
  • Store
  • Distributors