void setup() {
  // put your setup code here, to run once:
  volatile char *direction;
  volatile char *data;
  direction = 0x30;
  *direction = 0xFF;
  data = 0x31;
  *data = 0x01;

}

void loop() {
  // put your main code here, to run repeatedly:

}