#pragma once #ifndef CLIENT_ID # define CLIENT_ID "my-client-id" #endif #ifndef HOST # define HOST "localhost" #endif #ifndef PORT # define PORT 1883 #endif #ifndef USERNAME # define USERNAME "user" #endif #ifndef PASSWORD # define PASSWORD "password" #endif #ifndef TOPIC # define TOPIC "topic" #endif #ifndef KEEPALIVE # define KEEPALIVE 10 #endif #ifndef WAIT_UNTIL_RECONNECT # define WAIT_UNTIL_RECONNECT 10 #endif