15 lines
271 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 250
2022-01-10 00:55:04 +01:00
#define LUBE_PULSE_PAUSE_MS 250
2022-01-08 03:14:26 +01:00
void RunLubeApp(volatile uint32_t * wheelPulseCounter);
2022-01-10 00:55:04 +01:00
void LubePulse();
2022-01-08 03:14:26 +01:00
#endif