-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.h
49 lines (39 loc) · 1.09 KB
/
styles.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
/*
* File: estilos.h
* Author: Juan Nicola
* Comments:
* Revision history:
*/
// This is a guard condition so that contents of this file are not included
// more than once.
#ifndef XC_HEADER_TEMPLATE_H
#define XC_HEADER_TEMPLATE_H
#include <xc.h> // include processor files - each processor file is guarded.
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
// TODO If C++ is being used, regular C code needs function names to have C
// linkage so the functions can be used by the c code.
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* XC_HEADER_TEMPLATE_H */
#ifndef STYLES_H_INCLUDED
#define STYLES_H_INCLUDED
enum styles {
MADURACION = 0,
LAGER,
KOLSCH,
SCOTTISH,
ENGLISH,
WEIZEN,
BELGA,
CUSTOM
};
char style[8][12] = {"Maduracion\0", "Lager\0",
"Kolsch\0", "Scottish\0",
"British Ale\0", "Weizen\0",
"Belga\0", "Custom\0"};
/* Define the temperature in Centigrades degrees. */
int temp [8] = {0, 100, 150, 160, 180, 190, 200, 0};
#endif