Compare commits
6 Commits
T-Keyboard
...
main
| Author | SHA1 | Date |
|---|---|---|
|
|
6367192e4d | |
|
|
a4990519d7 | |
|
|
f49cccc8b3 | |
|
|
e6c1672e20 | |
|
|
573093f90a | |
|
|
36f097b1b0 |
|
|
@ -1,5 +1,2 @@
|
||||||
.pio
|
.pio
|
||||||
.vscode/.browse.c_cpp.db*
|
.vscode
|
||||||
.vscode/c_cpp_properties.json
|
|
||||||
.vscode/launch.json
|
|
||||||
.vscode/ipch
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
// See http://go.microsoft.com/fwlink/?LinkId=827846
|
|
||||||
// for the documentation about the extensions.json format
|
|
||||||
"recommendations": [
|
|
||||||
"platformio.platformio-ide"
|
|
||||||
],
|
|
||||||
"unwantedRecommendations": [
|
|
||||||
"ms-vscode.cpptools-extension-pack"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -168,6 +168,10 @@ void setup()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TFT_099.DispColor(0, 0, TFT_WIDTH, TFT_HEIGHT, BLACK);
|
||||||
|
TFT_099.DispStr("version 1.0.0", 0, 2, WHITE, BLACK);
|
||||||
|
delay(3000);
|
||||||
|
|
||||||
TFT_099.DispColor(0, 0, TFT_WIDTH, TFT_HEIGHT, BLACK);
|
TFT_099.DispColor(0, 0, TFT_WIDTH, TFT_HEIGHT, BLACK);
|
||||||
TFT_099.DispStr("Wait bluetooth ......", 0, 2, WHITE, BLACK);
|
TFT_099.DispStr("Wait bluetooth ......", 0, 2, WHITE, BLACK);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -10,14 +10,10 @@
|
||||||
|
|
||||||
[platformio]
|
[platformio]
|
||||||
default_envs = BLE_keybord
|
default_envs = BLE_keybord
|
||||||
|
|
||||||
globallib_dir = lib
|
|
||||||
src_dir = example/${platformio.default_envs}
|
src_dir = example/${platformio.default_envs}
|
||||||
|
|
||||||
[env:T-Keyboard]
|
[env:BLE_keybord]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
board = ttgo-t-oi-plus
|
board = ttgo-t-oi-plus
|
||||||
framework = arduino
|
framework = arduino
|
||||||
board_build.flash_mode = dio
|
board_build.flash_mode = dio
|
||||||
|
|
||||||
[env:BLE_keybord]
|
|
||||||
Loading…
Reference in New Issue