Tree


README.mdcommits | blame
cmd/
device/
device.protosetcommits | blame
dishy.gocommits | blame
go.modcommits | blame
go.sumcommits | blame
protobuf/
protoc.sh*commits | blame
satellites/
status/
telemetron/

README.md

# dishy

Package dishy provides an interface to manage a Starlink Dishy device over the network.

## gRPC Code Generation

A starlink device supports gRPC [server reflection][reflection].
This is used to eventually generate code to interact with its gRPC service.
Regenerating the code requires:

- [grpcurl][grpcurl]
- [protoc][protoc]
- connectivity to a Starlink Dishy's gRPC service listening on the default address (192.168.100.1:9200).

To regenerate the code:

	go generate

This calls protoc.sh. For more information on protoc.sh, see the inline documentation in the script.

[grpcurl]: https://pkg.go.dev/github.com/fullstorydev/grpcurl
[protoc]: https://grpc.io/docs/protoc-installation/
[reflection]: https://grpc.github.io/grpc/cpp/md_doc_server-reflection.html