File tree 6 files changed +3
-458
lines changed
6 files changed +3
-458
lines changed Original file line number Diff line number Diff line change 1
1
[ ![ License: GPL v3] ( https://img.shields.io/badge/License-GPL%20v3-blue.svg )] ( https://www.gnu.org/licenses/gpl-3.0 )
2
+ [ ![ npm version] ( https://badge.fury.io/js/arduino-create-agent-js-client.svg )] ( https://badge.fury.io/js/arduino-create-agent-js-client )
2
3
3
4
# arduino-create-agent-js-client
4
5
JS module providing discovery of the [ Arduino Create Plugin] ( https://github.com/arduino/arduino-create-agent ) and communication with it
@@ -68,8 +69,6 @@ daemon.downloading.subscribe(download => {
68
69
});
69
70
70
71
```
71
- ## Configure device for Arduino IoT
72
- Call functions in [ board-configuration.js] ( https://github.com/arduino/arduino-create-agent-js-client/blob/master/src/board-configuration.js )
73
72
74
73
## Development and test features
75
74
Just run ` npm run dev ` and open your browser on http://localhost:8000
Original file line number Diff line number Diff line change 19
19
*/
20
20
21
21
import React from 'react' ;
22
- import { Daemon } from '../src' ;
22
+ import Daemon from '../src' ;
23
23
24
24
import { HEX } from './serial_mirror' ;
25
25
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 20
20
21
21
import SocketDaemon from './socket-daemon' ;
22
22
import ChromeOsDaemon from './chrome-app-daemon' ;
23
- import BoardConfiguration from './board-configuration' ;
24
23
25
24
26
25
const Daemon = window . navigator . userAgent . indexOf ( ' CrOS ' ) !== - 1 ? ChromeOsDaemon : SocketDaemon ;
27
26
28
- export { Daemon , BoardConfiguration } ;
29
27
export default Daemon ;
You can’t perform that action at this time.
0 commit comments