Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed lixee ota external handling by using zigbeeOTA #8136

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading