8000 messing around with esp32-cam board · willivstn/esp8266-react@1c94857 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1c94857

Browse files
committed
messing around with esp32-cam board
add servo support for camera and grabber claw
1 parent 6e22893 commit 1c94857

10 files changed

+576
-240
lines changed

features.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
build_flags =
33
-D FT_PROJECT=1
44
-D FT_SECURITY=1
5-
-D FT_MQTT=1
6-
-D FT_NTP=1
7-
-D FT_OTA=1
5+
-D FT_MQTT=0
6+
-D FT_NTP=0
7+
-D FT_OTA=0
88
-D FT_UPLOAD_FIRMWARE=1

platformio.ini

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
extra_configs =
33
factory_settings.ini
44
features.ini
5-
default_envs = esp12e
6-
;default_envs = node32s
5+
;default_envs = esp12e
6+
default_envs = node32s
77

88
[env]
99
build_flags=
@@ -15,6 +15,7 @@ build_flags=
1515
-D CORS_ORIGIN=\"http://localhost:3000\"
1616
; Uncomment PROGMEM_WWW to enable the storage of the WWW data in PROGMEM
1717
-D PROGMEM_WWW
18+
-D CONFIG_ASYNC_TCP_RUNNING_CORE=1
1819

1920
; ensure transitive dependencies are included for correct platforms only
2021
lib_compat_mode = strict
@@ -29,13 +30,14 @@ framework = arduino
2930
monitor_speed = 115200
3031

3132
extra_scripts =
32-
pre:scripts/build_interface.py
33+
;pre:scripts/build_interface.py
3334

3435
lib_deps =
3536
ArduinoJson@>=6.0.0,<7.0.0
3637
ESP Async WebServer@>=1.2.0,<2.0.0
3738
AsyncMqttClient@>=0.8.2,<1.0.0
38-
39+
ESP32Servo@>=0.9.0,<1.0.0
40+
3941
[env:esp12e]
4042
platform = espressif8266
4143
board = esp12e
@@ -46,4 +48,5 @@ board_build.filesystem = littlefs
4648
; Comment out min_spiffs.csv setting if disabling PROGMEM_WWW with ESP32
4749
board_build.partitions = min_spiffs.csv
4850
platform = espressif32
49-
board = node32s
51+
board = esp32cam
52+
framework = arduino

0 commit comments

Comments
 (0)
0