Blame view

main.c 425 Bytes
2dcf20ec   HAMEL   first program wit...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  /*
   * Arduino program example
   */
  
  ////
  // Include files
  ////
  #include "arduino.h"
  #include <stdio.h>
  ////
  // Global variables
  // my variables 
  int i;
  long now;
  //
  ////
  
  ////
  // Handler functions
  ///
  
  void setup(void){
  	i = 0;	
  }
  
  void loop(void){
  	led((i-1 + LEDS_NB) % LEDS_NB, 0);
  	led(i % LEDS_NB, 1);
  	now = millis();
  	while(millis() != now+100);
  	i = (i+1) %  LEDS_NB;
  	
  }
  
  
  void serialInHandler(unsigned char byte){
  }