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"
|
2022-01-10 00:02:21 +01:00
|
|
|
#include "common.h"
|
|
|
|
#include "globals.h"
|
2022-01-08 03:14:26 +01:00
|
|
|
|
2022-01-13 22:00:31 +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
|
|
|
|
2022-02-04 21:28:18 +01:00
|
|
|
void RunLubeApp(uint32_t add_milimeters);
|
2022-01-10 00:55:04 +01:00
|
|
|
void LubePulse();
|
2022-01-08 03:14:26 +01:00
|
|
|
|
|
|
|
#endif
|