Skip to content

Commit

Permalink
ArduinoUi
Browse files Browse the repository at this point in the history
用按键控制的UI
  • Loading branch information
qq283938350 committed Aug 5, 2023
1 parent 1bf95f1 commit 13e7a0a
Show file tree
Hide file tree
Showing 8 changed files with 2,162 additions and 0 deletions.
7 changes: 7 additions & 0 deletions esp32UI/UI/.vscode/arduino.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"port": "COM4",
"configuration": "JTAGAdapter=default,PSRAM=disabled,PartitionScheme=default,CPUFreq=240,FlashMode=qio,FlashFreq=80,FlashSize=4M,UploadSpeed=921600,LoopCore=1,EventsCore=1,DebugLevel=none,EraseFlash=none",
"board": "esp32:esp32:esp32",
"programmer": "esptool",
"sketch": "UI.ino"
}
602 changes: 602 additions & 0 deletions esp32UI/UI/.vscode/c_cpp_properties.json

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions esp32UI/UI/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"wokwi.wokwi-vscode"
]
}
24 changes: 24 additions & 0 deletions esp32UI/UI/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "C/C++ Runner: Debug Session",
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": false,
"externalConsole": true,
"cwd": "c:/Users/Fxue/Desktop/Arduino/esp32UI/UI",
"program": "c:/Users/Fxue/Desktop/Arduino/esp32UI/UI/build/Debug/outDebug",
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
58 changes: 58 additions & 0 deletions esp32UI/UI/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"C_Cpp_Runner.cCompilerPath": "gcc",
"C_Cpp_Runner.cppCompilerPath": "g++",
"C_Cpp_Runner.debuggerPath": "gdb",
"C_Cpp_Runner.cStandard": "",
"C_Cpp_Runner.cppStandard": "",
"C_Cpp_Runner.msvcBatchPath": "",
"C_Cpp_Runner.useMsvc": false,
"C_Cpp_Runner.warnings": [
"-Wall",
"-Wextra",
"-Wpedantic",
"-Wshadow",
"-Wformat=2",
"-Wcast-align",
"-Wconversion",
"-Wsign-conversion",
"-Wnull-dereference"
],
"C_Cpp_Runner.msvcWarnings": [
"/W4",
"/permissive-",
"/w14242",
"/w14287",
"/w14296",
"/w14311",
"/w14826",
"/w44062",
"/w44242",
"/w14905",
"/w14906",
"/w14263",
"/w44265",
"/w14928"
],
"C_Cpp_Runner.enableWarnings": true,
"C_Cpp_Runner.warningsAsError": false,
"C_Cpp_Runner.compilerArgs": [],
"C_Cpp_Runner.linkerArgs": [],
"C_Cpp_Runner.includePaths": [],
"C_Cpp_Runner.includeSearch": [
"*",
"**/*"
],
"C_Cpp_Runner.excludeSearch": [
"**/build",
"**/build/**",
"**/.*",
"**/.*/**",
"**/.vscode",
"**/.vscode/**"
],
"C_Cpp_Runner.useAddressSanitizer": false,
"C_Cpp_Runner.useUndefinedSanitizer": false,
"C_Cpp_Runner.useLeakSanitizer": false,
"C_Cpp_Runner.showCompilationTime": false,
"C_Cpp_Runner.useLinkTimeOptimization": false
}
78 changes: 78 additions & 0 deletions esp32UI/UI/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "haas-studio: Config",
"type": "shell",
"command": "aos",
"args": [
"make",
"@haaseduk1",
"-c",
"config"
],
"presentation": {
"focus": true
}
},
{
"label": "haas-studio: Make",
"type": "shell",
"command": "aos",
"args": [
"make"
],
"presentation": {
"focus": true
}
},
{
"label": "haas-studio: Burn",
"type": "shell",
"command": "aos",
"args": [
"burn"
],
"presentation": {
"focus": true
}
},
{
"label": "haas-studio: Serial Monitor",
"type": "shell",
"command": "aos",
"args": [
"monitor",
"",
"1500000"
],
"presentation": {
"focus": true,
"panel": "dedicated"
}
},
{
"label": "haas-studio: Clean",
"type": "shell",
"command": "aos",
"args": [
"make",
"clean"
],
"presentation": {
"focus": true
}
},
{
"label": "dummy_aos3.3.0",
"command": "pwd"
}
],
"windows": {
"options": {
"env": {
"PATH": "C:\\ProgramData\\aos\\miniconda3;C:\\ProgramData\\aos\\miniconda3\\Scripts;C:\\ProgramData\\aos\\miniconda3\\Library\\bin;${env:PATH}"
}
}
}
}
Loading

0 comments on commit 13e7a0a

Please sign in to comment.