icom-wlan-node 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# icom-wlan-node
|
|
2
2
|
|
|
3
3
|
Icom WLAN (UDP) protocol implementation in Node.js + TypeScript, featuring:
|
|
4
4
|
|
|
@@ -16,7 +16,7 @@ Acknowledgements: Thanks to FT8CN (https://github.com/N0BOY/FT8CN) for sharing p
|
|
|
16
16
|
## Install
|
|
17
17
|
|
|
18
18
|
```
|
|
19
|
-
npm install
|
|
19
|
+
npm install icom-wlan-node
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
Build from source:
|
|
@@ -29,7 +29,7 @@ npm run build
|
|
|
29
29
|
## Quick Start
|
|
30
30
|
|
|
31
31
|
```ts
|
|
32
|
-
import { IcomControl, AUDIO_RATE } from '
|
|
32
|
+
import { IcomControl, AUDIO_RATE } from 'icom-wlan-node';
|
|
33
33
|
|
|
34
34
|
const rig = new IcomControl({
|
|
35
35
|
control: { ip: '192.168.1.50', port: 50001 },
|