-
Notifications
You must be signed in to change notification settings - Fork 2
/
lee_switches.h
executable file
·56 lines (41 loc) · 1.21 KB
/
lee_switches.h
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* lee_switches.h
*
* Created on: 12/11/2013
* Author: isidro
*/
/*
* unsigned int lee switches()
*
* Esta funci�n devuelve los valores siguientes:
* 0 -> si no hay ningun switch pulsado / error en lectura
* 1 -> si se ha pulsado el SW1
* 2 -> si se ha pulsado el SW2
* 3 -> si se han pulsado los dos switches
*
* en caso de repetir el valor anterior devuelve un 0
*
* Los switches est�n conectados al canal 3 del conversor ADC.
* las lecturas del conversor en funci�n del switch pulsado
* son las siguientes:
*
* ~1.8v (~1023) -> Si no hay ninguno pulsado
* ~1.2v (~ 682) -> Si esta pulsado SW1
* ~0.9v (~ 511) -> Si esta pulsado SW2
* ~0.7v (~ 409) -> Si est�n pulsados SW1 y SW2
*/
#ifndef LEE_SWITCHES_H_
#define LEE_SWITCHES_H_
#include "SEmP_5515.h"
#define SW1 0x2AA // Switch 1
#define SW2 0x1FF // Switch 2
#define SW12 0x199 // Switch 1+2
#define NoKey 0x3FF // No pulsacion
#define Error 0x4
#define rng 12 //
#define MAX_CNT 100
uint16_t lee_switches1(void);
uint16_t lee_switches2(void);
uint16_t lee_switches3(void);
uint16_t lee_switches4(void);
#endif /* LEE_SWITCHES_H_ */