UNPKG

homebridge-roomb-o-matic

Version:

Roomba Homebridge plugin reimagined with O‑Matic Factory magic. True vacuum semantics, hybrid local + advanced support, brand-driven.

16 lines (12 loc) 266 B
import { API } from 'homebridge'; export class RoombOMaticPlatform { private api: API; constructor(api: API) { this.api = api; } someMethod() { // Example usage const category = this.api.hap.Categories.OTHER; // ... rest of the code } }