We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d08d08 commit f7cce8cCopy full SHA for f7cce8c
README.md
@@ -46,8 +46,24 @@ daemon.writeSerial('port-name', 'message');
46
// Close serial monitor
47
daemon.closeSerialMonitor('port-name');
48
49
+// Upload hex
50
+daemon.upload(target, data);
51
+
52
+// Upload progress
53
+daemon.uploading.subscribe(upload => {
54
+ console.log(status);
55
+});
56
57
+// Download tool
58
+daemon.downloadTool('toolname', 'toolversion' 'packageName', 'replacement');
59
60
+// Download status
61
+daemon.downloading.subscribe(download => {
62
+ console.log(download);
63
64
65
```
-## Development
66
+## Development and test features
67
Just run `npm run dev` and open your browser on http://localhost:8000
68
69
## Agent communication
0 commit comments