Skip to content

Commit 8f0aac1

Browse files
committed
Add missing CAMERA_MODEL_AI_THINKER in Camera example
1 parent be6ff76 commit 8f0aac1

File tree

5 files changed

+24
-3
lines changed

5 files changed

+24
-3
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changelog
2+
3+
## Version 2.9.11
4+
- Add missing CAMERA_MODEL_AI_THINKER in Camera example
25
## Version 2.9.10
36
- Fixed event limitation in PowerLevelController
47
- Example "RGB_LED_Stripe_5050.ino" extended to support color temperature

examples/Camera/select_pins.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,24 @@ Compatible with all TTGO camera products, written by LewisHe
255255
#define PCLK_GPIO_NUM 25
256256

257257
#define BUTTON_1 0
258+
#elif defined(CAMERA_MODEL_AI_THINKER)
259+
#define PWDN_GPIO_NUM 32
260+
#define RESET_GPIO_NUM -1
261+
#define XCLK_GPIO_NUM 0
262+
#define SIOD_GPIO_NUM 26
263+
#define SIOC_GPIO_NUM 27
264+
265+
#define Y9_GPIO_NUM 35
266+
#define Y8_GPIO_NUM 34
267+
#define Y7_GPIO_NUM 39
268+
#define Y6_GPIO_NUM 36
269+
#define Y5_GPIO_NUM 21
270+
#define Y4_GPIO_NUM 19
271+
#define Y3_GPIO_NUM 18
272+
#define Y2_GPIO_NUM 5
273+
#define VSYNC_GPIO_NUM 25
274+
#define HREF_GPIO_NUM 23
275+
#define PCLK_GPIO_NUM 22
258276
#else
259277
#error "Please select the model of the board you want to use in main.cpp"
260278
#endif

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"maintainer": true
1414
}
1515
],
16-
"version": "2.9.10",
16+
"version": "2.9.11",
1717
"frameworks": "arduino",
1818
"platforms": [
1919
"espressif8266",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SinricPro
2-
version=2.9.10
2+
version=2.9.11
33
author=Boris Jaeger <sivar2311@gmail.com>
44
maintainer=Boris Jaeger <sivar2311@gmail.com>
55
sentence=Library for https://sinric.pro - simple way to connect your device to alexa

src/SinricProVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Version Configuration
77
#define SINRICPRO_VERSION_MAJOR 2
88
#define SINRICPRO_VERSION_MINOR 9
9-
#define SINRICPRO_VERSION_REVISION 10
9+
#define SINRICPRO_VERSION_REVISION 11
1010
#define SINRICPRO_VERSION STR(SINRICPRO_VERSION_MAJOR) "." STR(SINRICPRO_VERSION_MINOR) "." STR(SINRICPRO_VERSION_REVISION)
1111
#define SINRICPRO_VERSION_STR "SinricPro (v" SINRICPRO_VERSION ")"
1212
#define SINRICPRO_VERISON_INT SINRICPRO_VERSION_MAJOR * 1000000 + SINRICPRO_VERSION_MINOR * 1000 + SINRICPRO_VERSION_REVISION

0 commit comments

Comments
 (0)