2
0
Files
lpsarii/main.cpp

22 lines
321 B
C++
Raw Normal View History

2026-01-09 07:46:52 +01:00
#include "main.hpp"
2026-01-09 11:24:51 +01:00
#include "autom.cpp"
2026-01-09 09:25:37 +01:00
2026-01-09 07:46:52 +01:00
int main()
{
2026-01-09 10:14:37 +01:00
mqtt_open(&client);
2026-01-09 07:46:52 +01:00
while (1)
{
2026-01-09 11:44:24 +01:00
// Début du code
// *****************************************************
// *****************************************************
// Fin du code
2026-01-09 09:52:51 +01:00
2026-01-09 10:10:14 +01:00
mqtt_process(&client);
2026-01-09 09:25:37 +01:00
}
2026-01-09 10:10:14 +01:00
mqtt_close();
2026-01-09 07:46:52 +01:00
return 0;
}