We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 355c66f commit ae7dd21Copy full SHA for ae7dd21
2 files changed
src/lib/boards/esphub75.ts
@@ -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
@@ -9,14 +9,16 @@ import esp32c5dev from './esp32c5dev.js';
// High Level board
import tinker_c6 from './tinker_c6.js';
+import esphub75 from './esphub75.js';
13
14
const boards: BoardItem[] = [
15
esp32dev,
16
esp32s3dev,
17
esp32c3dev,
18
esp32c5dev,
19
esp32c6dev,
- tinker_c6
20
+ tinker_c6,
21
+ esphub75,
22
];
23
24
export default boards;
0 commit comments