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
{{ message }}
This repository was archived by the owner on Oct 1, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+2
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ This extension provides several commands in the Command Palette (<kbd>F1</kbd> o
47
47
-**Arduino: Board Manager**: Manage packages for boards. You can add 3rd party Arduino board by configuring `Additional Board Manager URLs` in the board manager.
48
48
-**Arduino: Change Baud Rate**: Change the baud rate of the selected serial port.
49
49
-**Arduino: Change Board Type**: Change board type or platform.
50
+
-**Arduino: Change Timestamp Format**: Change format of timestamp printed before each line of Serial Monitor output.
50
51
-**Arduino: Close Serial Monitor**: Stop the serial monitor and release the serial port.
51
52
-**Arduino: Examples**: Show list of examples.
52
53
-**Arduino: Initialize**: Scaffold a VS Code project with an Arduino sketch.
@@ -79,6 +80,7 @@ This extension provides several commands in the Command Palette (<kbd>F1</kbd> o
79
80
|`arduino.disableTestingOpen`| Enable/disable automatic sending of a test message to the serial port for checking the open status. The default value is `false` (a test message will be sent). |
80
81
|`arduino.skipHeaderProvider`| Enable/disable the extension providing completion items for headers. This functionality is included in newer versions of the C++ extension. The default value is `false`.|
81
82
|`arduino.defaultBaudRate`| Default baud rate for the serial port monitor. The default value is 115200. Supported values are 300, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 74880, 115200, 230400 and 250000 |
83
+
|`arduino.defaultTimestampFormat`| Format of timestamp printed before each line of Serial Monitor output. You can find list of all available placeholders [here](https://strftime.org). |
82
84
|`arduino.disableIntelliSenseAutoGen`| When `true` vscode-arduino will not auto-generate an IntelliSense configuration (i.e. `.vscode/c_cpp_properties.json`) by analyzing Arduino's compiler output. |
83
85
84
86
The following Visual Studio Code settings are available for the Arduino extension. These can be set in global user preferences <kbd>Ctrl</kbd> + <kbd>,</kbd> or workspace settings (`.vscode/settings.json`). The latter overrides the former.
Copy file name to clipboardExpand all lines: package.json
+10
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@
44
44
"onCommand:arduino.selectSerialPort",
45
45
"onCommand:arduino.selectSketch",
46
46
"onCommand:arduino.changeBaudRate",
47
+
"onCommand:arduino.changeTimestampFormat",
47
48
"onCommand:arduino.openSerialMonitor",
48
49
"onCommand:arduino.sendMessageToSerialPort",
49
50
"onCommand:arduino.closeSerialMonitor",
@@ -128,6 +129,10 @@
128
129
"command": "arduino.changeBaudRate",
129
130
"title": "Arduino: Change Baud Rate"
130
131
},
132
+
{
133
+
"command": "arduino.changeTimestampFormat",
134
+
"title": "Arduino: Change Timestamp Format"
135
+
},
131
136
{
132
137
"command": "arduino.openSerialMonitor",
133
138
"title": "Arduino: Open Serial Monitor"
@@ -531,6 +536,11 @@
531
536
"type": "boolean",
532
537
"default": false,
533
538
"description": "When disabled vscode-arduino will not auto-generate an IntelliSense configuration (i.e. c_cpp_properties.json) by analyzing the compiler output."
539
+
},
540
+
"arduino.defaultTimestampFormat": {
541
+
"type": "string",
542
+
"default": "",
543
+
"markdownDescription": "Format of timestamp printed before each line of Serial Monitor output. You can find list of all available placeholders [here](https://strftime.org)."
0 commit comments