Click for more products.
No products were found.
Blog search
Latest Comments

Heating in the cottage with limited consumption

by
Love0

Sometimes home automation can help not only solve your own automation, but also work with the limitations that the environment sets. In this case, it was a solution of heating and at the same time the maximum load of the existing circuit breaker.

The owner wanted to add electric heating to his cottage for the possibility of at least partial heating of the building before arrival, before the classic heating in the fireplace stove. The owner's choice fell on two electric radiators with a power input of 1200W and 1500W. However, because the building is located "in the middle of the wilderness", the main circuit breaker is only 1x16A and the socket circuit in the cottage is secured 1x13A (and the owner is not interested in making a change). Although a 13A circuit breaker is sufficient for a power input of 2700w, there was a requirement to figure out how to leave some reserve for a possible additional appliance (eg a pump that turns on on arrival and you should think about turning off the heating before turning on the pump).

The whole solution ultimately consists of two Fibaro Wall Plugs (which in my opinion are probably the best Z-Wave product ever) for the two electric radiators mentioned. Fibaro Home Center 3 control unit - at the time of implementation, the Fibaro Home Center 3 Lite unit was not yet available, but it would be a great fit here. And finally Fibaro KeyFob and Fibaro Double Switch 2, which we will get to again. An existing LTE modem provided connectivity.

The heating is controlled manually, due to the irregular use of the building, by setting a standard thermostat in the Home Center 3 unit and this controls not directly the Wall Plug socket, but the prepared Quick App, which (currently) turns on or off at 5 minute intervals. switches off one resp. second socket. This ensures the primary requirement of maintaining a sufficient "circuit breaker reserve". We can already take remote control as a clear thing. And measuring consumption like the icing on the cake.

Quickapp LUA code for inspiration:

function QuickApp:turnOn()
    fibaro.call(self.plug1, 'turnOn')
    self:loop()
    self:updateProperty('value', true)
end

function QuickApp:turnOff()
    fibaro.clearTimeout(self.timeoutHandle)
    self.timeoutHandle = nil
    fibaro.call({ self.plug1, self.plug2 }, 'turnOff')
    self:updateProperty('value', false)
end

function QuickApp:loop()
    if fibaro.getValue(self.plug1, 'value') then
        fibaro.call(self.plug1, 'turnOff')
        fibaro.call(self.plug2, 'turnOn')
    else
        fibaro.call(self.plug1, 'turnOn')
        fibaro.call(self.plug2, 'turnOff')
    end
    self.timeoutHandle = fibaro.setTimeout(self.timeout, function() self:loop() end)
end

function QuickApp:onInit()
    self.timeoutHandle = nil
    self.plug1 = ...
    self.plug2 = ...
    self.timeout = ...
end

Above mentioned Double Switch 2 was then used to control the lighting of the sidewalk and driveway. Although Single Switch 2 would suffice, the "double" version was chosen as a reserve for possible future expansion. The KeyFob then allows this lighting to be switched on without having to be at the switch, which is useful, for example, when arriving in the evening.

The use of home automation is not only suitable for apartments and family houses, but is also well suited for recreational facilities, where it can make the use of the facility more pleasant.

Jiří Č.

Related products
Leave a Comment
Leave a Reply
Please login to post a comment.

Menu

Settings

Create a free account to save loved items.

Sign in

Create a free account to use wishlists.

Sign in
News
24. 04. 2026

The manufacturer has adjusted the price of Home Assistant Green in response to rising production costs and ongoing changes in the pricing of key electronic components across the industry. Home Assistant Green continues to hold a strong position as ...


22. 04. 2026

We’ve got great news for you! We’ve launched attractive discounts across the entire Shelly product portfolio, helping you make your home smarter, more energy-efficient, and more comfortable. Selected products are now available at clearance prices, ...


16. 04. 2026

We would like to inform you about a price update across the entire Shelly product portfolio. This change applies to all our business partners as well as end customers. We encourage you to review the current Shelly product offering, where you can f ...


16. 04. 2026

We would like to inform you about the availability of MOES brand products in our offering. The range includes a wide portfolio of smart home devices that bring comfort, energy savings, and easy control. We recommend exploring the current selection ...


More news