mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-05 02:39:57 +02:00
18 lines
291 B
C++
18 lines
291 B
C++
#ifndef EVENTS_H
|
|
#define EVENTS_H
|
|
|
|
#include <Arduino.h>
|
|
#include <algorithm>
|
|
#include <vector>
|
|
#include "../utils/events.h"
|
|
|
|
/**
|
|
* @brief Replaces placeholder with content section in web page
|
|
*
|
|
* @param[in] var
|
|
*
|
|
* @return String
|
|
*/
|
|
String events_processor(const String& var);
|
|
|
|
#endif
|