I am using Arduino Yun with data streaming service from Plotly (https://plot.ly) to monitor temperature and humidity in a real-time manner. After following the instructions on arduino-api/plotly_yun at master · plotly/arduino-api · GitHub, I am able to stream both temperature and humidity traces into one graph. However, since their values differ a lot (e.g. temperature ~ 25 in degC, while humidity ~80 in percentage), it would be better to stream the two traces into two graphs respectively. A multiple-graph approach also facilitates visualizing more sensing data (e.g. air pressure, UV level).
There is example code for streaming multiple traces to multiple graphs on Streaming multiple traces to multiple plots with Arduino and Plotly · GitHub. However, it applies to Arduino Uno + Ethernet shield instead of Arduino Yun which is at my hand. I wonder is there any way I can implement streaming multiple traces to multiple graphs with Arduino Yun. Any suggestion is welcome. Thanks.