remove depreciated https prefix on url

This commit is contained in:
brentru 2020-08-24 11:52:52 -04:00
parent c439726397
commit ac0fccbc00

View file

@ -185,7 +185,7 @@ print("Connected to WiFi!")
MQTT.set_socket(socket, esp) MQTT.set_socket(socket, esp)
# Initialize a new MQTT Client object # Initialize a new MQTT Client object
mqtt_client = MQTT.MQTT(broker="https://io.adafruit.com", mqtt_client = MQTT.MQTT(broker="io.adafruit.com",
username=secrets["aio_user"], username=secrets["aio_user"],
password=secrets["aio_key"]) password=secrets["aio_key"])