Skip to content

Commit ae7dd21

Browse files
committed
Add ESP-HUB75 board
1 parent 355c66f commit ae7dd21

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

src/lib/boards/esphub75.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import type { BoardItem } from './types.js'
2+
import esp32s3dev from "./esp32s3dev.js";
3+
4+
const esphub75: BoardItem = {
5+
...esp32s3dev,
6+
id: 'esphub75',
7+
name: 'ESP-HUB75',
8+
fqbn: 'esp32:esp32:esp32s3:CDCOnBoot=cdc',
9+
10+
};
11+
12+
export default esphub75;

src/lib/boards/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ import esp32c5dev from './esp32c5dev.js';
99

1010
// High Level board
1111
import tinker_c6 from './tinker_c6.js';
12+
import esphub75 from './esphub75.js';
1213

1314
const boards: BoardItem[] = [
1415
esp32dev,
1516
esp32s3dev,
1617
esp32c3dev,
1718
esp32c5dev,
1819
esp32c6dev,
19-
tinker_c6
20+
tinker_c6,
21+
esphub75,
2022
];
2123

2224
export default boards;

0 commit comments

Comments
 (0)