Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Paulmann 501.39 smart switch #8582

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/devices/paulmann.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,13 @@ const definitions: DefinitionWithExtend[] = [
description: 'Smart Home Zigbee LED bulb 4,9W Matt E14 RGBW',
extend: [light({colorTemp: {range: [153, 454]}, color: {modes: ['xy', 'hs']}})],
},
{
zigbeeModel: ['TS000F', '501.39'],
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TS000F doesn't look like a Paulmann model, 501.39 does, where did you got TS000F from? Could you provide the data/database.db entry of this device?

Copy link
Contributor Author

@ochstobi ochstobi Jan 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello, I got the infos from the zigbee2mqtt frontend -> dev tools -> generate external configuration. The 501.39 is printed on the device itself so I added it aswell.

While pairing there was an error in the frontend:

zh:controller:device: Device '0xa4c1381b33ed1195' is only compliant to revision '21' of the ZigBee specification (current revision: 23).

database.db entry:

"id":30,"type":"Router","ieeeAddr":"0xa4c1381b33ed1195","nwkAddr":9942,"manufId":4417,"manufName":"_TZ3210_hjxqqofs\u0000","powerSource":"Mains (single phase)","modelId":"TS000F","epList":[1,242],"endpoints":{"1":{"profId":260,"epId":1,"devId":256,"inClusterList":[0,3,4,5,6,57345,57344,61184],"outClusterList":[10,25],"clusters":{"genBasic":{"attributes":{"modelId":"TS000F","manufacturerName":"_TZ3210_hjxqqofs\u0000","powerSource":1,"zclVersion":3,"appVersion":81,"stackVersion":1,"hwVersion":1,"dateCode":""}}},"binds":[],"configuredReportings":[],"meta":{}},"242":{"profId":41440,"epId":242,"devId":97,"inClusterList":[],"outClusterList":[33],"clusters":{},"binds":[],"configuredReportings":[],"meta":{}}},"appVersion":81,"stackVersion":1,"hwVersion":1,"dateCode":"","zclVersion":3,"interviewCompleted":true,"meta":{},"lastSeen":1736458119350}

model: 'TS000F',
vendor: 'Paulmann Licht GmbH',
description: '50139 SH ZB Paulmann Home Universal-Switch White',
extend: [onOff({powerOnBehavior: false})],
},
];

export default definitions;
Expand Down
Loading