File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/firmware/installPybricksDialog Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 11// SPDX-License-Identifier: MIT
2- // Copyright (c) 2022-2025 The Pybricks Authors
2+ // Copyright (c) 2022-2026 The Pybricks Authors
33// based on https://usehooks-ts.com/react-hook/use-fetch
44
55import { FirmwareMetadata , FirmwareReader } from '@pybricks/firmware' ;
66import cityHubZip from '@pybricks/firmware/build/cityhub.zip' ;
77import essentialHubZip from '@pybricks/firmware/build/essentialhub.zip' ;
8+ import ev3Zip from '@pybricks/firmware/build/ev3.zip' ;
89import moveHubZip from '@pybricks/firmware/build/movehub.zip' ;
910import primeHubZip from '@pybricks/firmware/build/primehub.zip' ;
1011import technicHubZip from '@pybricks/firmware/build/technichub.zip' ;
@@ -44,6 +45,7 @@ const firmwareZipMap = new Map<Hub, string>([
4445 [ Hub . Prime , primeHubZip ] ,
4546 [ Hub . Essential , essentialHubZip ] ,
4647 [ Hub . Inventor , primeHubZip ] ,
48+ [ Hub . EV3 , ev3Zip ] ,
4749] ) ;
4850
4951/**
You can’t perform that action at this time.
0 commit comments