You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: arduino-ide-extension/README.md
+8-5
Original file line number
Diff line number
Diff line change
@@ -30,17 +30,20 @@ The Core Service is responsible for building your sketches and uploading them to
30
30
- compiling a sketch for a selected board type
31
31
- uploading a sketch to a connected board
32
32
33
-
#### Monitor Service
33
+
#### Serial Service
34
34
35
-
The Monitor Service allows getting information back from sketches running on your Arduino boards.
35
+
The Serial Service allows getting information back from sketches running on your Arduino boards.
36
36
37
-
-[src/common/protocol/monitor-service.ts](./src/common/protocol/monitor-service.ts) implements the common classes and interfaces
38
-
-[src/node/monitor/monitor-service-impl.ts](./src/node/monitor/monitor-service-impl.ts) implements the service backend:
37
+
-[src/common/protocol/serial-service.ts](./src/common/protocol/serial-service.ts) implements the common classes and interfaces
38
+
-[src/node/serial/serial-service-impl.ts](./src/node/serial/serial-service-impl.ts) implements the service backend:
39
39
- connecting to / disconnecting from a board
40
40
- receiving and sending data
41
-
-[src/browser/monitor/monitor-widget.tsx](./src/browser/monitor/monitor-widget.tsx) implements the serial monitor front-end:
41
+
-[src/browser/serial/serial-connection-manager.ts](./src/browser/serial/serial-connection-manager.ts) handles the serial connection in the frontend
42
+
-[src/browser/serial/monitor/monitor-widget.tsx](./src/browser/serial/monitor/monitor-widget.tsx) implements the serial monitor front-end:
42
43
- viewing the output from a connected board
43
44
- entering data to send to the board
45
+
-[src/browser/serial/plotter/plotter-frontend-contribution.ts](./src/browser/serial/plotter/plotter-frontend-contribution.ts) implements the serial plotter front-end:
46
+
- opening a new window running the [Serial Plotter Web App](https://github.com/arduino/arduino-serial-plotter-webapp)
0 commit comments