Skip to content

Commit

Permalink
fix: Use zigbeeOTA for Lixee (#8136)
Browse files Browse the repository at this point in the history
removed ota/lixee.ts ( no need anymore, fw are submitted using zigbee-OTA pull request )

fix #16823
PR submitted for type 2 limited firmware Koenkk/zigbee-OTA#568
type 1 norma fw already present in index.json
  • Loading branch information
KipK authored Oct 15, 2024
1 parent dbe1fd1 commit 54481a6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 65 deletions.
2 changes: 1 addition & 1 deletion src/devices/lixee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1860,7 +1860,7 @@ const definitions: DefinitionWithExtend[] = [
throw e.reason;
});
},
ota: ota.lixee,
ota: ota.zigbeeOTA,
onEvent: async (type, data, device, options) => {
const endpoint = device.getEndpoint(1);
if (type === 'start') {
Expand Down
3 changes: 1 addition & 2 deletions src/lib/ota/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import * as gmmts from './gmmts';
import * as inovelli from './inovelli';
import * as jethome from './jethome';
import * as ledvance from './ledvance';
import * as lixee from './lixee';
import * as salus from './salus';
import * as securifi from './securifi';
import * as tradfri from './tradfri';
Expand All @@ -13,6 +12,6 @@ import * as zigbeeOTA from './zigbeeOTA';

const {setDataDir} = common;

export {inovelli, ledvance, salus, lixee, securifi, tradfri, ubisys, zigbeeOTA, jethome, gmmts, setDataDir};
export {inovelli, ledvance, salus, securifi, tradfri, ubisys, zigbeeOTA, jethome, gmmts, setDataDir};

export type ImageInfo = Ota.ImageInfo;
62 changes: 0 additions & 62 deletions src/lib/ota/lixee.ts

This file was deleted.

0 comments on commit 54481a6

Please sign in to comment.