Replies: 11 comments 31 replies
-
I've got the same problem: the same device and the same issue. |
Beta Was this translation helpful? Give feedback.
-
Same here! I have 3 of these sensors. Same behavior for all of them. |
Beta Was this translation helpful? Give feedback.
-
Have the same issue , i have 2 sensor . |
Beta Was this translation helpful? Give feedback.
-
Could you check if the issue is fixed with the following external converter: const fz = require('zigbee-herdsman-converters/converters/fromZigbee');
const tz = require('zigbee-herdsman-converters/converters/toZigbee');
const exposes = require('zigbee-herdsman-converters/lib/exposes');
const reporting = require('zigbee-herdsman-converters/lib/reporting');
const extend = require('zigbee-herdsman-converters/lib/extend');
const ota = require('zigbee-herdsman-converters/lib/ota');
const tuya = require('zigbee-herdsman-converters/lib/tuya');
const utils = require('zigbee-herdsman-converters/lib/utils');
const globalStore = require('zigbee-herdsman-converters/lib/store');
const e = exposes.presets;
const ea = exposes.access;
const definition = {
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_bq5c8xfe'},
{modelID: 'TS0601', manufacturerName: '_TZE200_bjawzodf'},
{modelID: 'TS0601', manufacturerName: '_TZE200_qyflbnbj'},
{modelID: 'TS0601', manufacturerName: '_TZE200_9yapgbuv'},
{modelID: 'TS0601', manufacturerName: '_TZE200_zl1kmjqx'}],
model: 'TS0601_temperature_humidity_sensor',
vendor: 'TuYa',
description: 'Temperature & humidity sensor',
fromZigbee: [fz.tuya_temperature_humidity_sensor],
toZigbee: [],
exposes: (device, options) => {
const exps = [e.temperature(), e.humidity(), e.battery()];
if (!device || device.manufacturerName === '_TZE200_qyflbnbj') {
exps.push(e.battery_low());
exps.push(exposes.enum('battery_level', ea.STATE, ['low', 'middle', 'high']).withDescription('Battery level state'));
}
exps.push(e.linkquality());
return exps;
},
};
module.exports = definition;
external_converters:
- ext_converter.js
|
Beta Was this translation helpful? Give feedback.
-
Yeap, it works! Thank you, @hometheater13! |
Beta Was this translation helpful? Give feedback.
-
Probably this particular version support just |
Beta Was this translation helpful? Give feedback.
-
more than 50x since yesterday noon: |
Beta Was this translation helpful? Give feedback.
-
@Koenkk looks like this is not Looking at source code, I took the
I am not used to z2m repo enough to add a new device but can take this is up if you are good with adding a new device. |
Beta Was this translation helpful? Give feedback.
-
May be.. All my other zigbee temperature sensor were AAA. The Exposes geta those entities from the config for the sensor. Latest z2m already has the sensor config so it should automatically show them if you pull Latest image and restart (and may be re pair with a fresh battery) |
Beta Was this translation helpful? Give feedback.
-
I bumped up z2m version by
While converter by @mvadu don't report anything - just
|
Beta Was this translation helpful? Give feedback.
-
I don't know if this is the right place to put this, but I just received one of these sensors in the mail. The board is listed as ZTH02_V1.0, with date of 2022-05-27, and it is reporting a different manufacturer |
Beta Was this translation helpful? Give feedback.
-
Hi, may I ask for help with WSD500A TuYa Temperature and humidity sensor? It pairs fine, exposes temperature, humidity and battery labels but provides no data on them (part of state.json):
Part of configuration.yaml:
I am running Zigbee2MQTT 1.29.2-1. The model ID is 'TS0601', manufacturerName '_TZE200_9yapgbuv'', model 'WSD500A', vendor 'TuYa'. Log entry is
Thanks
Beta Was this translation helpful? Give feedback.
All reactions