Stop wasting hours configuring servers. Get your dedicated MQTT credentials instantly. Connect your ESP32, Arduino, or Home Assistant securely in seconds.
Subscribe and receive your unique Host URL, Username, and Password immediately. No manual approval required.
Full support for standard Port 1883 and Secure SSL/TLS Port 8883. Your IoT data is encrypted and completely private.
Works flawlessly with ESP8266, ESP32, Raspberry Pi, Home Assistant, Python, Node.js, and any standard MQTT client.
Standard PubSubClient library implementation. Just paste your generated credentials and you are live.
// 1. Define your SezginCloud credentials
const char* mqtt_server = "mqtt.sezgincloud.com";
const int mqtt_port = 8883; // 8883 for SSL, 1883 for TCP
const char* mqtt_user = "your_generated_username";
const char* mqtt_pass = "your_generated_password";
// 2. Setup standard client
WiFiClientSecure espClient;
PubSubClient client(espClient);
// 3. Connect to the broker
void reconnect() {
while (!client.connected()) {
Serial.print("Connecting to SezginCloud MQTT...");
if (client.connect("ESP32Client", mqtt_user, mqtt_pass)) {
Serial.println("connected!");
client.subscribe("home/livingroom/light");
} else {
delay(5000);
}
}
}
Perfect for DIY projects and smart homes.
Save $10 by paying yearly.