Blame view

tests/atmega2560/servoAndStepperControl/servoAndStepperControl.c 185 Bytes
0168f2ba   pfrison   premier tests pou...
1
2
3
4
  #include <avr/io.h>
  #include <util/delay.h>
  
  int main(void){
7bb9b8f1   pfrison   Tests d'avr sur a...
5
6
  	// pin 13
  	DDRB = 0x80;
0168f2ba   pfrison   premier tests pou...
7
8
  
  	while(1){
7bb9b8f1   pfrison   Tests d'avr sur a...
9
10
11
12
  		PORTB = 0x80;
  		_delay_us(1000);
  		PORTB = 0x00;
  		_delay_us(1000);
0168f2ba   pfrison   premier tests pou...
13
14
15
  	}
  	return 0;
  }
7bb9b8f1   pfrison   Tests d'avr sur a...