How to create two y-axes streaming plotly
I followed the plotly examples to successfully create a streaming temperature graph using my DHT22 sensor. The sensor also provides humidity which I would like to plot as well. Is it possible somehow? The following code is what I'm trying but an exception is thrown: plotly.exceptions.PlotlyAccountError: Uh oh, an error occured on the server. no data is being plot to the graph (see bellow). with open('./plotly.conf') as config_file: plotly_user_config = json.load(config_file) py.sign_in(plotly_user_config["plotly_username"], plotly_user_config["plotly_api_key"]) streamObj = Stream(token=plotly