mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-02-05 18:50:06 +08:00
24 lines
319 B
C++
24 lines
319 B
C++
#include "temperature_conversion.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
class mqtt_tempconv *tempconv;
|
|
int rc;
|
|
|
|
mosqpp::lib_init();
|
|
|
|
tempconv = new mqtt_tempconv("tempconv", "localhost", 1883);
|
|
|
|
while(1){
|
|
rc = tempconv->loop();
|
|
if(rc){
|
|
tempconv->reconnect();
|
|
}
|
|
}
|
|
|
|
mosqpp::lib_cleanup();
|
|
|
|
return 0;
|
|
}
|
|
|