matterbridge-tado-hw
Version:
A Matterbridge plugin that connects Tado° V2/V3/V3+ hot water control to the Matter smart home ecosystem
25 lines • 926 B
JavaScript
// Matterbridge plugin for Tado hot water control
// Copyright © 2025 Alexander Thoukydides
import { readFileSync } from 'fs';
import { fileURLToPath } from 'url';
import { dirname, join } from 'path';
const PACKAGE_JSON = join(dirname(fileURLToPath(import.meta.url)), '..', 'package.json');
const PACKAGE = JSON.parse(readFileSync(PACKAGE_JSON, 'utf-8'));
// Platform identifiers
export const ENGINES = PACKAGE.engines;
export const PLUGIN_NAME = PACKAGE.name;
export const PLATFORM_NAME = PACKAGE.displayName;
export const PLUGIN_VERSION = PACKAGE.version;
// Matter identifiers
export const VENDOR_ID = 0x134E;
export const VENDOR_NAME = 'Tado°';
export const PRODUCT_NAME = 'Hot Water';
// Default configuration options
export const DEFAULT_CONFIG = {
whiteList: [],
blackList: [],
pollInterval: 20 * 60, // 20 minutes
debug: false,
unregisterOnShutdown: false
};
//# sourceMappingURL=settings.js.map