Skip to content

Commit

Permalink
feat: Add ota to SIN-4-FP-21_EQU (#8146)
Browse files Browse the repository at this point in the history
device supports ota update
  • Loading branch information
KipK authored Oct 16, 2024
1 parent bfdf450 commit 9445044
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/devices/adeo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import fz from '../converters/fromZigbee';
import tz from '../converters/toZigbee';
import * as exposes from '../lib/exposes';
import {battery, electricityMeter, humidity, iasZoneAlarm, illuminance, light, onOff, quirkCheckinInterval, temperature} from '../lib/modernExtend';
import * as ota from '../lib/ota';
import * as reporting from '../lib/reporting';
import {DefinitionWithExtend, Fz, Tz} from '../lib/types';

Expand Down Expand Up @@ -396,6 +397,7 @@ const definitions: DefinitionWithExtend[] = [
model: 'SIN-4-FP-21_EQU',
vendor: 'ADEO',
description: 'Equation pilot wire heating module',
ota: ota.zigbeeOTA,
fromZigbee: [fz.on_off, fz.metering, fz.nodon_pilot_wire_mode],
toZigbee: [tz.on_off, tz.nodon_pilot_wire_mode],
exposes: [e.switch(), e.power(), e.energy(), e.pilot_wire_mode()],
Expand Down

0 comments on commit 9445044

Please sign in to comment.