summaryrefslogtreecommitdiff
path: root/io_declarations.h
blob: ea7ef744b353b268e5e9341d66794e46568eb410 (plain)
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
// ========================================
// == INTERRUPTEURS =======================
// ========================================
typedef enum { 
  bt_test_arduino, bt_ext_cote_rue,

  NUM_ENTREES
} entree_t;

static uint8_t pin_entrees[NUM_ENTREES] = {
  0, 4,
};


// ========================================
// == LIGNES ==============================
// ========================================
  
typedef enum { 
  led_arduino, rl_ecl_ext_jardin,
  
  NUM_SORTIES
} sortie_t;


static uint8_t pin_sorties[NUM_SORTIES] = {
  13, 41,
};

static char desc_sorties[NUM_SORTIES][16] = {
  "LED Arduino", "Jardin",  
};