From 3e37fe8892d1079319ddd669ce78b55b90a70c1d Mon Sep 17 00:00:00 2001 From: RobinVdB8 Date: Mon, 13 Nov 2023 13:00:14 +0100 Subject: [PATCH] Added mug.h with mug_init() --- project/Core/Inc/mug.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 project/Core/Inc/mug.h diff --git a/project/Core/Inc/mug.h b/project/Core/Inc/mug.h new file mode 100644 index 0000000..f2cbbe2 --- /dev/null +++ b/project/Core/Inc/mug.h @@ -0,0 +1,12 @@ +/** + * @file mug.h + * @header for mosquitto application of the groups assignment + * @author RobinVdB + */ + +#ifndef INC_MUG_H_ +#define INC_MUG_H_ + +void mug_init(); + +#endif /* INC_MUG_H_ */