Stop wasting hours configuring servers. Get your dedicated MQTT credentials instantly. Connect your ESP32, Arduino, or Home Assistant securely in seconds.
Subscribe now and get your unique Username and Password instantly. No manual approval required.
Full support for 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.sezginhome.com.tr";
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 SezginHome MQTT...");
if (client.connect("ESP32Client", mqtt_user, mqtt_pass)) {
Serial.println("connected!");
client.subscribe("home/livingroom/light");
} else {
delay(5000);
}
}
}
Note: Your connection credentials will be sent via email after purchase.
Perfect for DIY projects and smart homes.
Save $10 by paying yearly.