Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theengs/gateway-appliance
Ubuntu Core appliance with Theengs Gateway pre-installed
https://github.com/theengs/gateway-appliance
appliance ble home-assistant home-automation iot mqtt raspberry-pi smarthome snap snapcraft ubuntu-core
Last synced: 2 days ago
JSON representation
Ubuntu Core appliance with Theengs Gateway pre-installed
- Host: GitHub
- URL: https://github.com/theengs/gateway-appliance
- Owner: theengs
- License: gpl-3.0
- Created: 2022-07-23T14:23:07.000Z (over 2 years ago)
- Default Branch: development
- Last Pushed: 2024-02-11T18:29:40.000Z (9 months ago)
- Last Synced: 2024-02-11T19:45:41.153Z (9 months ago)
- Topics: appliance, ble, home-assistant, home-automation, iot, mqtt, raspberry-pi, smarthome, snap, snapcraft, ubuntu-core
- Language: Shell
- Homepage:
- Size: 36.1 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build status](https://github.com/theengs/gateway-appliance/workflows/Build/badge.svg)](https://github.com/theengs/gateway-appliance/actions)
[![Check status](https://github.com/theengs/gateway-appliance/workflows/Checks/badge.svg)](https://github.com/theengs/gateway-appliance/actions)
[![GitHub license](https://img.shields.io/github/license/theengs/gateway-appliance.svg)](https://github.com/theengs/gateway-appliance/blob/development/LICENSE)
[![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/theengs/gateway-appliance?label=Theengs%20Gateway)](https://github.com/theengs/gateway-appliance/releases)
![amd64](https://img.shields.io/badge/amd64-yes-green.svg)
![arm64](https://img.shields.io/badge/pi_arm64-yes-green.svg)
![armhf](https://img.shields.io/badge/pi_armhf-yes-green.svg)# Theengs Gateway Appliance
[Ubuntu Core](https://ubuntu.com/core) appliance with [Theengs Gateway](https://github.com/theengs/gateway) pre-installed## How to install
Download the .img.xz file from the [latest release](https://github.com/theengs/gateway-appliance/releases) of this repository.There are three files to choose from:
* theengs-gateway-core22-amd64.img.xz: for Intel NUC
* theengs-gateway-core22-pi-arm64.img.xz: for Raspberry Pi 3, 4, 400, CM4 and Zero 2 W
* theengs-gateway-core22-pi-armhf.img.xz: for Raspberry Pi 2, 3, 4, 400, CM4 and Zero 2 WNote that the Raspberry Pi 2 only supports 32-bits, so you need the armhf image for this model. You also need a separate Bluetooth USB dongle (Bluetooth 4.0 or higher) to be able to use Theengs Gateway, because this model doesn't have a built-in Bluetooth chip.
See the instructions for [Installing Ubuntu Core 22 on a Raspberry Pi](https://ubuntu.com/core/docs/install-raspberry-pi), but use one of the images of this repository instead of the default Ubuntu Core 22 image.
After installing the appliance, the operating system and Theengs Gateway should automatically upgrade when a newer release is available.
Make sure to set the correct timezone for the appliance, e.g.:
```shell
snap set system system.timezone="Europe/Brussels"
```## How to configure
First give the snap access to Bluetooth:
```shell
snap connect theengs-gateway:bluez-client bluez:service
```You can show the Theengs Gateway snap's configuration with:
```shell
$ snap get -d theengs-gateway
{
"ble": {
"adapter": "",
"scan-duration": 5,
"time-between": 5
},
"ha": {
"discovery": 1,
"discovery-device-name": "TheengsGateway",
"discovery-filter": "IBEACON",
"discovery-topic": "homeassistant/sensor",
"hass-discovery": 1
},
"log-level": "WARNING",
"mqtt": {
"host": "",
"pass": "",
"port": 1883,
"pub-topic": "home/TheengsGateway/BTtoMQTT",
"lwt-topic": "home/TheengsGateway/LWT",
"sub-topic": "home/+/BTtoMQTT/undecoded",
"publish-advdata": 0,
"user": ""
},
"time-sync": {
"addresses": "",
"format": 0
},
"presence": {
"topic": "home/TheengsGateway/presence",
"enable": 0
}
}
```You need to set at least the MQTT configuration, for instance:
```shell
snap set theengs-gateway mqtt.host=MYBROKER mqtt.user=MYUSER mqtt.pass=MYPASS
```Have a look at [Theengs Gateway's documentation](https://gateway.theengs.io/use/use.html#details-options) for the meaning of all configuration options.
After changing the configuration, Theengs Gateway should now run as a service. If you want it to start automatically after booting your appliance, enable the service with:
```shell
snap start --enable theengs-gateway
```## How to build new images
If you want to build the images yourself, you can do this in one command:```
./scripts/build-images.sh
```