This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ----------------------------------------------------------------------------- | |
# Importing the modules | |
# ----------------------------------------------------------------------------- | |
import dash | |
from dash import html, dcc, Input, Output | |
import dash_bootstrap_components as dbc | |
import paho.mqtt.client as mqtt | |
global current_temperature | |
current_temperature = "NaN" |
OlderNewer