- How to Adjust X and Y Axis Scale in Arduino Serial Plotter (No Extra Software Needed)Posted 3 months ago
- Elettronici Entusiasti: Inspiring Makers at Maker Faire Rome 2024Posted 3 months ago
- makeITcircular 2024 content launched – Part of Maker Faire Rome 2024Posted 5 months ago
- Application For Maker Faire Rome 2024: Deadline June 20thPosted 7 months ago
- Building a 3D Digital Clock with ArduinoPosted 12 months ago
- Creating a controller for Minecraft with realistic body movements using ArduinoPosted 1 year ago
- Snowflake with ArduinoPosted 1 year ago
- Holographic Christmas TreePosted 1 year ago
- Segstick: Build Your Own Self-Balancing Vehicle in Just 2 Days with ArduinoPosted 1 year ago
- ZSWatch: An Open-Source Smartwatch Project Based on the Zephyr Operating SystemPosted 1 year ago
Create a dashboard and a data logger for Arduino in javascript
Create a dashboard and a data logger for Arduino in javascript with node-serialport library. Under 250 lines of code!!
Features
Serialport selector: A graphical user interface component that allows you to select the serialport for your Arduino.
Dashboard: A dashboard that prints the real time values on the screen and also draws charts.
Datalogger: A data logger that will read data from arduino and save it on your computer in csv format.
Getting started
- Clone this repository
cd examples/arduino-dashboard
- Upload the
arduino.ino
file to the arduino.- Open project file
arduino-dashboard.qrk
to edit project, or build filearduino-dashboard.build.qrk
to run the project in Quark.Running the project
- Open the build file
arduino-dashboard.build.qrk
in Quark.- Press
ctrl+p
and select the COM port of your arduino from the serial port selector.
-
To start the data logger, open the commands palette by pressing
ctrl+shift+p
, and selectDatalogger: Start
command. You will see a notification on the bottom right of your screen if the logger was started. -
To stop the data logger, open the commands palette and select command
Datalogger: Stop
. This will open a save dialog where you can enter the path of the file where you want to save your data.
One Comment