Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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();
```