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"
|
2022-01-10 00:02:21 +01:00
|
|
|
#include "common.h"
|
|
|
|
#include "globals.h"
|
2022-01-08 03:14:26 +01:00
|
|
|
|
2022-01-12 00:52:59 +01:00
|
|
|
#define LUBE_PULSE_LENGHT_MS 100
|
|
|
|
#define LUBE_PULSE_PAUSE_MS 100
|
2022-01-08 03:14:26 +01:00
|
|
|
|
2022-01-10 00:02:21 +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
|