|
Most commonly, an Analog Plot is created by opening the Controls Palette (F2), clicking a plot control and drawing it on the interface.
But one may be created from code as well entered into the Debug/CLI Window or sent by the controller as serial ASCII Data:
!makePlot name, left, top, height, width
!makePlot Temperature, 5, 5, 50,50
Serial.println("!makePlot Temperature, 5, 5, 50,50");
Once created, it's properties may be changed in a variety of way, using the Interface Editor (F3), using the controls on it, it's pop-up menu, or using instructions through the Debug/CLI or from the controller:
!Temperature.yMax=500
Serial.println("!Temperature.yMax=500");
|
|