Skip to content

Instantly share code, notes, and snippets.

@michaellin
Created December 1, 2015 04:16
Show Gist options
  • Save michaellin/983231494d9252912756 to your computer and use it in GitHub Desktop.
Save michaellin/983231494d9252912756 to your computer and use it in GitHub Desktop.
//Header File for wrench Helper fucntions
#ifndef WrenchHelpers_H
#define WrenchHelpers_H
#include <stdint.h>
#include <stdbool.h>
void Wrench_SR_Init(void);
uint8_t Wrench_SR_GetCurrentRegister(void);
void Wrench_SR_Write(uint8_t NewValue);
void Wrench_Pot_Init(void);
uint16_t Wrench_Pot_Read( void);
int Wrench_Pot_Bin( void);
#endif //WrenchHehpers_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment