13 lines
222 B
C
Raw Normal View History

2022-01-08 03:14:26 +01:00
#ifndef _LUBEAPP_H_
#define _LUBEAPP_H_
#include <Arduino.h>
2022-01-09 20:51:16 +01:00
#include "config.h"
#include "common.h"
#include "globals.h"
2022-01-08 03:14:26 +01:00
#define LUBE_PULSE_LENGHT_MS 1000
2022-01-08 03:14:26 +01:00
void RunLubeApp(volatile uint32_t * wheelPulseCounter);
2022-01-08 03:14:26 +01:00
#endif