C:\Users\dntg\Documents\Arduino\porte_io\porte_io.
ino giovedì 4 gennaio 2018 00:07
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
PORTB |= (PORTD ^ (1<<PD0)) & (1<<PB0);
PORTD = (PORTD ^ 0x01);
}
-1-