8000 Serial Plotter implementation by AlbyIanna · Pull Request #597 · arduino/arduino-ide · GitHub
[go: up one dir, main page]

Skip to content

Serial Plotter implementation #597

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
Nov 23, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
401bcf5
spawn new window where to instantiate serial plotter app
Oct 14, 2021
a834e86
initialize serial monito web app
Oct 20, 2021
a145ad9
WIP connect serial plotter app with websocket
Oct 21, 2021
d7c85fb
use npm serial-plotter package
fstasi Oct 25, 2021
f0fdc24
connect serial plotter app with websocket
Oct 21, 2021
3d616c5
refactor monito connection and fix some connection issues
Oct 29, 2021
eead91d
plotter communication
fstasi Nov 3, 2021
6ab7a38
fix clearConsole + refactor monitor connection
Nov 4, 2021
ef1377e
fixed duplicated message issue
fstasi Nov 4, 2021
eed7366
sync EoL and baudRates
fstasi Nov 4, 2021
8f1223c
add serial unit tests
Nov 9, 2021
dbaf244
updated serial plotter webapp
fstasi Nov 10, 2021
df9902d
updated serial plotter webapp to 0.0.6
fstasi Nov 11, 2021
31fde3e
handle interpolate message
Nov 11, 2021
f96a04a
fix reconnecting issues
Nov 11, 2021
5052862
updated plotter to 0.0.8
fstasi Nov 11, 2021
ee607af
bump arduino-serial-plotter-webapp to 0.0.10
Nov 15, 2021
f4938b5
bump arduino-serial-plotter-webapp to 0.0.11
Nov 16, 2021
e17960b
fix upload when serial port is open
Nov 16, 2021
1f0d4bf
remove menu bar on windows/linux
Nov 16, 2021
89e7bab
dispose send message event listener on disconnect
Nov 17, 2021
ad1cb25
update serial plotter app to 0.0.13
fstasi Nov 22, 2021
f333bbd
i18n generation
fstasi Nov 22, 2021
03eb1b3
clear flush message interval when disconnecting
Nov 23, 2021
90f9afe
bump arduino-serial-plotter-webapp to 0.0.15
Nov 23, 2021
e352f5a
refactoring and cleaning code
Nov 23, 2021
118f7f0
update localisation for serial
Nov 23, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated serial plotter webapp
  • Loading branch information
fstasi committed Nov 23, 2021
commit dbaf2446fbe8fe34a6f2ff425adf893f3a731ba0
2 changes: 1 addition & 1 deletion arduino-ide-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"test:watch": "mocha --watch --watch-files lib \"./lib/test/**/*.test.js\""
},
"dependencies": {
"arduino-serial-plotter-webapp": "0.0.4",
"arduino-serial-plotter-webapp": "0.0.5",
"@grpc/grpc-js": "^1.3.7",
"@theia/application-package": "1.18.0",
"@theia/core": "1.18.0",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4109,10 +4109,10 @@ archive-type@^4.0.0:
dependencies:
file-type "^4.2.0"

arduino-serial-plotter-webapp@0.0.4:
version "0.0.4"
resolved "https://registry.yarnpkg.com/arduino-serial-plotter-webapp/-/arduino-serial-plotter-webapp-0.0.4.tgz#4cb41e4360dfe3f9c28e0956d764fcf0aaaa03a5"
integrity sha512-t1BEqr02zPBmSV/jwFAUNlKu6GPa4p0TU3x3E0uco27SCaRIKT4qwPXfUlMkVfCGZB3JoNngdpAr7J082wzxxA==
arduino-serial-plotter-webapp@0.0.5:
version "0.0.5"
resolved "https://registry.yarnpkg.com/arduino-serial-plotter-webapp/-/arduino-serial-plotter-webapp-0.0.5.tgz#aaf21557de52abe2392372c15aba7d75cc7c9a43"
integrity sha512-ZNVwM67e/Xz+4PKFkJyPruxsZXuTvmOTwDrq1hKSjZHbpdMytQIqR+rT9pY+mg4jqFAn2Nd79Ycbazm8zXgJsQ==

are-we-there-yet@~1.1.2:
version "1.1.5"
Expand Down
0