Skip to content

Commit

Permalink
docs: update deprecated arduino-language-server docs (#2875)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arian8j2 authored Oct 26, 2023
1 parent 7cf8b9b commit bd1b4dc
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions lua/lspconfig/server_configurations/arduino_language_server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $ arduino-cli sketch new test
$ cd test
```
You will need a `sketch.json` file in order for the language server to understand your project. It will also save you passing options to `arduino-cli` each time you compile or upload a file. You can generate the file like using the following commands.
You will need a `sketch.yaml` file in order for the language server to understand your project. It will also save you passing options to `arduino-cli` each time you compile or upload a file. You can generate the file like using the following commands.
First gather some information about your board. Make sure your board is connected and run the following:
Expand All @@ -60,27 +60,22 @@ Port Protocol Type Board Name FQBN Core
Then generate the file:
```sh
arduino-cli board attach -p /dev/ttyACM0 test.ino
arduino-cli board attach -p /dev/ttyACM0 -b arduino:avr:uno test.ino
```
The resulting file should like like this:
```json
{
"cpu": {
"fqbn": "arduino:avr:uno",
"name": "Arduino Uno",
"port": "serial:///dev/ttyACM0"
}
}
```yaml
default_fqbn: arduino:avr:uno
default_port: /dev/ttyACM0
```
Your folder structure should look like this:
```
.
├── test.ino
└── sketch.json
└── sketch.yaml
```
For further instruction about configuration options, run `arduino-language-server --help`.
Expand Down

0 comments on commit bd1b4dc

Please sign in to comment.