19 lines
255 B
C
19 lines
255 B
C
//
|
|
// Created by jedi on 25.06.21.
|
|
//
|
|
|
|
#ifndef FIRMWARE_MQTT_H
|
|
#define FIRMWARE_MQTT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void mqtt_task(void *pvParameters);
|
|
void beat_task(void *pvParameters);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //FIRMWARE_MQTT_H
|