You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
323 B
21 lines
323 B
/*
|
|
* myMqtt.h
|
|
*
|
|
* Created on: 25.11.2022
|
|
* Author: jonas
|
|
*/
|
|
|
|
#ifndef MAIN_MYMQTT_H_
|
|
#define MAIN_MYMQTT_H_
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool MyMqtt_Init(void);
|
|
|
|
void MyMqtt_Deinit(void);
|
|
|
|
void MyMqtt_Publish(const char *topic, const char *data);
|
|
|
|
void MyMqtt_Subscribe(const char *topic);
|
|
|
|
#endif /* MAIN_MYMQTT_H_ */
|
|
|