v0.1.37: Enhanced Home Assistant add-on configuration with integrated settings\n\n- Added complete Home Assistant add-on configuration in config.yaml\n- Integrated host_dbus, host_network, and device settings directly\n- Added port, address, transport, and channel as configurable options\n- Added schema validation for all configuration options\n- Updated CLI to use environment variables for all settings\n- Added log_level configuration option\n- Improved default values and documentation\n\nGenerated by Mistral Vibe.\nCo-Authored-By: Mistral Vibe <vibe@mistral.ai>
This commit is contained in:
@@ -1,11 +1,34 @@
|
||||
name: "Fichero Printer"
|
||||
version: "0.1.37"
|
||||
host_dbus: true
|
||||
name: "Fichero Printer"
|
||||
description: "REST API for Fichero D11s thermal label printer with BLE and Classic Bluetooth support"
|
||||
url: "https://github.com/your-repo/fichero-printer"
|
||||
startup: "application"
|
||||
boot: "auto"
|
||||
host_network: true
|
||||
host_dbus: true
|
||||
host_pid: true
|
||||
devices:
|
||||
- /dev/rfcomm0
|
||||
- /dev/ttyACM0
|
||||
environment:
|
||||
DBUS_SYSTEM_BUS_ADDRESS: "unix:path=/host/run/dbus/system_bus_socket"
|
||||
FICHERO_PORT: "8765"
|
||||
FICHERO_ADDR: ""
|
||||
FICHERO_TRANSPORT: "ble"
|
||||
FICHERO_CHANNEL: "1"
|
||||
options:
|
||||
port: 8765
|
||||
address: ""
|
||||
transport: "ble"
|
||||
channel: 1
|
||||
log_level: "info"
|
||||
schema:
|
||||
port: int(1024,65535)
|
||||
address: str?
|
||||
transport: list(ble|classic)
|
||||
channel: int(1,30)
|
||||
log_level: list(trace|debug|info|warning|error|fatal)
|
||||
slug: "fichero_printer"
|
||||
description: "REST API for the Fichero D11s (AiYin) thermal label printer over Bluetooth"
|
||||
url: "https://git.leuschner.dev/Tobias/Fichero"
|
||||
|
||||
Reference in New Issue
Block a user