17 lines
318 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-14 15:36:17 +01:00
#include <stdlib.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 160
2022-01-12 00:52:59 +01:00
#define LUBE_PULSE_PAUSE_MS 100
2022-01-14 15:36:17 +01:00
#define STARTUP_DELAY 5000
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