mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
These are all design documents that I thought I had lost. It's may make me cringe, but it's still cool to use it to see how far I've come.
23 lines
414 B
C
23 lines
414 B
C
/*
|
|
* SystemInputFunctions.h
|
|
*
|
|
* Created: 8/12/2014 3:32:03 PM
|
|
* Author: corwin
|
|
*/
|
|
|
|
|
|
#ifndef SYSTEMINPUTFUNCTIONS_H_
|
|
#define SYSTEMINPUTFUNCTIONS_H_
|
|
|
|
|
|
typedef struct ButtonStates{
|
|
volatile char estopPressed;
|
|
volatile char startPressed;
|
|
volatile char stopPressed;
|
|
volatile char homePressed;
|
|
volatile char calibratePressed;
|
|
}ButtonStates_t;
|
|
|
|
ButtonStates_t btnState;
|
|
|
|
#endif /* SYSTEMINPUTFUNCTIONS_H_ */ |