Arduino Plotter Versions Save

An Arduino library for easy graphing on host computer via serial communication

2.4.1

3 years ago

This removes an old duplicate call to initialize serial comms for backwards compatibility. Seemed to be causing issues on ESP32 boards

Related issues: https://github.com/devinaconley/arduino-plotter/issues/31 https://github.com/devinaconley/arduino-plotter/issues/34

2.4.0

3 years ago

Updated to follow newer Arduino 1.5+ library spec https://arduino.github.io/arduino-cli/library-specification/

This also removes need for the manager-compliant duplicate repo, which will be deleted.

2.3.3

5 years ago

Improvements for more efficient memory usage

h/t @Chritzel

2.3.1

7 years ago

Merged PR to fix compiler warnings, made graph.size private, fixed bug in SetColors for 6 vars, better timescale for quickstart

2.3.0

7 years ago

Added Begin() function to handle Plotter initialization (Serial.begin and storing millis()). This lets us avoid repeated call to default constructor with implicit copy to global plotter. The copy was showing undefined behaviour

Note: duplicate calls were left in default constructor for the sake of backward compatibility

2.2.1

7 years ago

Switch from using dtostrf to Serial.print with decimal specified. The function dtostrf is only available on AVR devices, so this should be better for usability across all boards.

2.2.0

7 years ago

Converted to flattened-JSON for serialization. While the full form is slightly slower, it enabled easy recognition of packet formats. So now, a full configuration packet is only sent at a 50-count interval, where the rest are data-only packets. Overall this change improved data transfer speeds by over 2x

2.1.0

7 years ago
  • Rebuilt to use an object-oriented approach for data management and graphing (Graph.java)
  • Added functionality to scan all available serial ports when having trouble finding Arduino
  • Exposed method to select variable colors for a specific graph
  • All drawing sizes now adjust based on size of window
  • Fixed bug with incorrect labels
  • Fixed bug with undefined data being plotted
  • Aesthetic changes (colors, graph border, etc.)

2.0.0

7 years ago

Converted to a templated wrapper for storing references to plotted variables. This introduces support for all primitive data types. Added example to show this and did a general refactor of function and variable names

1.0.0

8 years ago

First official version.

Arduino Library features include multi-variable (up to 6) graphing against time, X vs Y graphing, dynamic addition and removal of graphs, and an easy no-argument plot command to update all graphs.

Listener application automatically configures plot layout, handles axis auto-scaling, and plots rolling data live as it is received from the Arduino.