16 lines
237 B
C
16 lines
237 B
C
/**
|
|
* @file mug.h
|
|
* @header for mosquitto application of the groups assignment
|
|
* @author RobinVdB
|
|
*/
|
|
|
|
#ifndef INC_MUG_H_
|
|
#define INC_MUG_H_
|
|
|
|
/**
|
|
* @brief Initialise MQTT application
|
|
*/
|
|
void mug_init(void);
|
|
|
|
#endif /* INC_MUG_H_ */
|