Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dernasherbrezon/rotctrldclient
Java client for rotctrld daemon
https://github.com/dernasherbrezon/rotctrldclient
hamlib java rotctrld
Last synced: about 2 months ago
JSON representation
Java client for rotctrld daemon
- Host: GitHub
- URL: https://github.com/dernasherbrezon/rotctrldclient
- Owner: dernasherbrezon
- License: apache-2.0
- Created: 2020-06-01T16:50:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-06-21T20:08:51.000Z (over 3 years ago)
- Last Synced: 2024-05-02T05:09:18.537Z (8 months ago)
- Topics: hamlib, java, rotctrld
- Language: Java
- Size: 22.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# About [![Build Status](https://travis-ci.com/dernasherbrezon/rotctrldClient.svg?branch=master)](https://travis-ci.com/dernasherbrezon/rotctrldClient) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=ru.r2cloud%3ArotctrldClient&metric=alert_status)](https://sonarcloud.io/dashboard?id=ru.r2cloud%3ArotctrldClient)
Java client for [rotctrld](http://hamlib.sourceforge.net/pdf/rotctld.8.pdf) daemon
# Usage
1. Add maven dependency:
```xml
ru.r2cloud
rotctrldClient
1.1```
2. Setup client and make a request:
```java
RotctrldClient client = new RotctrldClient("127.0.0.1", port, 10000);
client.start();
Position position = client.getPosition();
client.stop();
```