-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h
executable file
·38 lines (32 loc) · 1.01 KB
/
config.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
/*
**********************************************************
* CATEGORY HARDWARE
* GROUP MICROCONTROLLER
* AUTHOR LANCE HAYNIE <[email protected]>
* DATE YYYY-MM-DD
* PURPOSE CONFIG
* FILE CONFIG.H
**********************************************************
* MODIFICATIONS
* YYYY-MM-DD - LHAYNIE - INITIAL VERSION
**********************************************************
Note: This template is designed with the idea of using the ATMEGA chip as standalone function.
If you do not plan to remove the ATMEGA microcontroller from the Arduino board, this template is overkill.
ATMEGA Non I/O pin definitions
ATM01 = reset
ATM07 = VCC
ATM08 = GND
ATM09 = crystal
ATM10 = crystal
ATM20 = VCC
ATM21 = analog reference
ATM22 = GND
*/
#ifndef CONFIG_H_
#define CONFIG_H_
#include "Arduino.h"
#include "atmega_pins.h"
extern const String pgmco = "Haynie Research & Development";
extern const String pgmname = "Program Name";
extern const String pgmver = "0.0.1";
#endif /* CONFIG_H_ */