void setup() {
// put your setup code here, to run once:
volatile char *Dir;
Dir = 0x30;
*Dir = 0xFF;
}
void loop() {
// put your main code here, to run repeatedly:
volatile char *Out;
Out = 0x31;
*Out = 0x3F;// 0011 1111
}
void setup() {
// put your setup code here, to run once:
volatile char *Dir;
Dir = 0x30;
*Dir = 0xFF;
}
void loop() {
// put your main code here, to run repeatedly:
volatile char *Out;
Out = 0x31;
*Out = 0x3F;// 0011 1111
}