Which Smoke Detector (Groups, Notification, etc)

No, I have no better alternative, at least if you want to stick to a zwave device.
At least for the intended core funktion, the smoke detection, they should be good according to test reviews I had read.

And outside of zwave?

what about Homematic IP via CCU2?
http://www.eq-3.de/produkte/homematic-ip/homematic-ip-rauchwarnmelder-mit-q-label.html

I can confirm these issues with my 2 POPP 4001 devices. Additionally they really drain the battery very quick. The maximum so far was 6 months, often it is only 3-4 months. This is not acceptable for a battery powerd Z-Wave device and this purpose.
I originally intended to buy even some more but I will not do this after these experinces (have them for 15 months now). They offer the nice feature of using the siren by rules as they are FLiRS devices but apparently this is eating up battery and so of no practical use. I will probably go for the POPP 009402 which is not frequently listening (siren not usable for other applications) but supposed to last 10 years. Even if it only reaches 5 years it would already be a big improvement to the 4001.

1 Like

What about https://manuals.fibaro.com/smoke-sensor?

Many false alarms reportet as well. Do Not have owwn experiance on it so need comments of real users

I also have 5 of Popp 4001. And I was unhappy at the beginning, too.

But now, I switched OFF Parameter 5 and Parameter 6.

Put 3 Popps and 2 Popps together in 2 different Association Groups.

Controlling siren (burglar alarm) via OH2 rules.
Controlling smoke alarm via OH2 rules.
Controlling battery alarm via OH2 rules.

NEVER had a false alarm.

Tested smoke alarm with a testspray. And the associated smoke detectors then started all an alarm.

The only disadvantage of this scenario is: OH2 always has to run. But this is the sense of a home automation system. :wink:

1 Like

I also had Parameters 5 and 6 switched OFF. However battery life was very poor. How long last yours?

Sorry. I could not tell you. I bought mine in October and November 2017. No battery issues since then.

Ok, this is only 3-4 months so far. You might have to change the battery soon for the first timeā€¦

Ok, Iā€™m going to report this.

Damn ā€¦ I thought the Popp 4001 would be the best option for meā€¦ but this doesnā€™t sound too good.
The new Popp ones with 10 years battery life are very expensive.

They are more expensive, that is true. I just ordered one for testing and I will report battery life. However, this might (hopefully) take some timeā€¦

Can you post your Complete settings and rule examples?

1 Like

Sorry. Iā€™m on vacation. When Iā€™m back I can do that.

How do you do that? The device has a channel ā€˜battery-levelā€™ but as already mentioned here it will always show 100% and is of no use at all. As far as I know the only chance to get to know about a low battery is listening to the beeping of the device.

(This is exactly what Popp Support told me!)

I then disabled Parameter 6 and wrote a rule. When battery-level == 0 then send notification.

But I donā€™t now if smoke sensor is peeping before it is = 0 (with disabled Parameter 6), because mine are only 4 month oldā€¦

I am really interested in this and if it works for you. I have persisted my battery level item on a ā€œevery updateā€ strategy. Although I already had to change the battery 2 times and collected more than 4.000 values in the DB-table I only have records with value ā€˜100ā€™ nothing elseā€¦ :frowning:

What a freaking shā€¦, even the POPP 10 years smoke detector is a bad joke and misleading product. I just received my POPE009402 today an wondered why there was a small 1/2 AA battery coming with the device (although it has a built in not changeable 10 years battery). The answer can be found in the manual:

So the smoke detector will work long time, the Z-Wave functions wonā€™t.
Honestly I am really disappointed with all battery powered Z-Wave+ devices so far. The PLUS devices (Gen5 or 500 chip series) were introduced with loud marketing noise claiming the improved ability for long battery life. So far ALL PLUS devices I own last only for maximum 6-8 months which is a bad joke and absolutely inacceptable. Some devices (like Fibaro motion sensor) which I own as an old version (Z-Wave) and new version (Z-Wave plus) show significantly differences in battery life. While the old ones lasted 1,5 to 2 years the new ones die after 6 months. Just my 5 centsā€¦ :frowning:

@cl-oh

Here are some examples:

.items:

Switch POPP_Smoke_2_A 	"WZ Feueralarm" 		<fire> 			(GF_Living, Fire) {channel="zwave:device:d846b027:node5:sensor_binary"}
Switch POPP_Smoke_2_Sw  "WZ Sirene"				<siren> 		(GF_Living, Fire) {channel="zwave:device:d846b027:node5:switch_binary"}
Switch POPP_Smoke_2_GA  "WZ General Alarm"		<siren> 		(GF_Living, Fire) {channel="zwave:device:d846b027:node5:alarm_general"}
Number POPP_Smoke_2_Battery "WZ Popp Batterie" 	<battery> 		(GF_Living, Fire, Battery) {channel="zwave:device:d846b027:node5:battery-level"}

.rules:

rule "Feueralarm WZ an"
	when
		Item POPP_Smoke_2_A changed to ON
	then
        sendCommand(POPP_Smoke_3_Sw, ON)
		sendCommand(POPP_Smoke_4_Sw, ON)
		sendBroadcastNotification("Feueralarm im WZ")
end

rule "Feueralarm WZ aus"
	when
		Item POPP_Smoke_2_A changed to OFF
	then
        sendCommand(POPP_Smoke_3_Sw, OFF)
		sendCommand(POPP_Smoke_4_Sw, OFF)
end

rule "Batterie-Stand bei Popp WZ ist 0"
	when 
		Item POPP_Smoke_2_Battery changed from 100 to 0
	then
		sendBroadcastNotification("Batterie im Wohnzimmer ist leer")
end