go-satel/README.md

31 wiersze
928 B
Markdown

2021-11-20 12:03:06 +00:00
# go-satel
go-satel is a Go library to integrate
with [Satel ETHM-1/ETHM-1 Plus](https://www.satel.pl/produkty/sswin/komunikacja-i-powiadamianie/komunikacja-tcp-ip/ethm-1-plus/)
module
2024-03-05 20:28:51 +00:00
[![builds.sr.ht status](https://builds.sr.ht/~michalr/go-satel.svg)](https://builds.sr.ht/~michalr/go-satel?) [![Go Report Card](https://goreportcard.com/badge/git.sr.ht/~michalr/go-satel)](https://goreportcard.com/report/git.sr.ht/~michalr/go-satel)
The library is based on https://github.com/probakowski/go-satel .
2021-11-20 12:03:06 +00:00
## Installation
go-satel is compatible with modern Go releases in module mode, with Go installed:
```bash
2024-03-05 20:28:51 +00:00
go get git.sr.ht/~michalr/go-satel
2021-11-20 12:03:06 +00:00
```
will resolve and add the package to the current development module, along with its dependencies.
Alternatively the same can be achieved if you use import in a package:
```go
2024-03-05 20:28:51 +00:00
import "git.sr.ht/~michalr/go-satel"
2021-11-20 12:03:06 +00:00
```
and run `go get` without parameters.
## Usage
2024-03-05 20:28:51 +00:00
2024-03-05 20:42:56 +00:00
**TODO**