Skip to content

Commit

Permalink
Add ezsp to list of supported drivers. (#286)
Browse files Browse the repository at this point in the history
Co-authored-by: Pierpaolo Follia <pfollia@gmail.com>
  • Loading branch information
jdhuntington and madchicken committed Aug 27, 2024
1 parent dc27b40 commit e280c36
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"description": "Type of adapter to use. Default to zstack",
"type": "string",
"default": "zstack",
"enum": ["zstack", "deconz", "zigate"],
"enum": ["zstack", "deconz", "zigate", "ezsp"],
"required": false
},
"database": {
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export interface ZigBeeNTPlatformConfig extends PlatformConfig {
channel?: number;
secondaryChannel?: string;
database?: string;
adapter?: 'zstack' | 'deconz' | 'zigate';
adapter?: 'zstack' | 'deconz' | 'zigate' | 'ezsp';
httpPort?: number;
disableRoutingPolling?: boolean;
disableHttpServer?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion src/zigbee/zig-bee-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export interface ZigBeeClientConfig {
database: string;
panId: number;
secondaryChannel?: string;
adapter?: 'zstack' | 'deconz' | 'zigate';
adapter?: 'zstack' | 'deconz' | 'zigate' | 'ezsp';
}

type StatePublisher = (ieeeAddr: string, state: DeviceState) => void;
Expand Down

0 comments on commit e280c36

Please sign in to comment.