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: README.md
+8-10
Original file line number
Diff line number
Diff line change
@@ -121,11 +121,9 @@ By clicking on the tray icon and going to the debug console you can try most of
121
121
log on
122
122
123
123
### List the boards
124
-
To get a json list of the connected boards you can issue the command list:
124
+
To get a json list of the connected boards you can issue the command:
125
125
126
-
```javascript
127
-
socket.emit('command', 'list');
128
-
```
126
+
list
129
127
130
128
You will receive an object of all the boards connected with USB or over the network:
131
129
@@ -264,7 +262,7 @@ The syntax of the command is:
264
262
downloadtool {{name}} {{version}} {{behaviour}}
265
263
266
264
where `version` can be a version number of the string "latest", and `behaviour` can be
267
-
"keep" (which skip the download if the tool already exists) and "replace" (which will download it again).
265
+
"keep" (which skips the download if the tool already exists) and "replace" (which will download it again).
268
266
269
267
### Upload
270
268
You can upload a binary sketch to a board connected to a port with a POST request to be made at the http endpoint.
@@ -293,13 +291,13 @@ The payload is a json object that looks like this:
293
291
}
294
292
```
295
293
296
-
- commandline is the command to execute to perform the upload. This is for example avrdude on a leonardo.
294
+
- commandline is the command to execute to perform the upload. This is, for example, avrdude on a Leonardo.
297
295
298
296
- hex contains the sketch hex encoded in base64
299
297
300
298
- signature is the signature of the commandline signed with the private key that matches the public key contained in the config.ini of the arduino-create-agent
301
299
302
-
The results of the upload will be delivered via websocket with messages that looks like:
300
+
The results of the upload will be delivered via websocket with messages that look like:
@@ -339,7 +337,7 @@ Your contribution is adding or modifying existing behaviour, please always refer
339
337
340
338
Be sure to use `go vet` and `go fmt` on every file before each commit: it ensures your code is properly formatted.
341
339
342
-
Also, for your contribution to be accepted, everyone of your commits must be "Signed-off". This is done by commiting using this command: `git commit --signoff`
340
+
Also, for your contribution to be accepted, every one of your commits must be "Signed-off". This is done by committing using this command: `git commit --signoff`
343
341
344
342
By signing off your commits, you agree to the following agreement, also known as [Developer Certificate of Origin](http://developercertificate.org/): it assures everyone that the code you're submitting is yours or that you have rights to submit it.
345
343
@@ -384,5 +382,5 @@ By making a contribution to this project, I certify that:
384
382
385
383
386
384
## Creating a release
387
-
Just create a new release on github, and our drone server will build and upload
388
-
ithe compiled binaries for every architecture in a zip file in the release itself.
385
+
Just create a new release on GitHub, and our drone server will build and upload
386
+
the compiled binaries for every architecture in a zip file in the release itself.
0 commit comments