// ======================================== // == 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", };