Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/docusaurus-version'…
Browse files Browse the repository at this point in the history
… into docusaurus-version

merge
  • Loading branch information
Allen-Kuang committed Apr 23, 2024
2 parents fb75747 + 2d030f1 commit 85dad16
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The AT command set specification can be found at [SSCMA-Micro](https://github.co
If you need to flash a new firmware or update the firmware, you can navigate to the [SenseCraft AI](https://seeed-studio.github.io/SenseCraft-Web-Toolkit/#/setup/process) website.
:::

<p style={{textAlign: 'center'}}><img src="https://files.seeedstudio.com/wiki/grove-vision-ai-v2/dev/at-diagram.png" alt="at diagram" width={420} height="auto" /></p>
<p style={{textAlign: 'center'}}><img src="https://files.seeedstudio.com/wiki/grove-vision-ai-v2/dev/at-diagram.png" alt="at diagram" width={320} height="auto" /></p>

<div class="github_container" style={{textAlign: 'center'}}>
<a class="github_item" href="https://github.com/Seeed-Studio/SSCMA-Micro/blob/dev/docs/protocol/at_protocol.md">
Expand Down Expand Up @@ -518,14 +518,18 @@ SSCMA AI;

void setup()
{
Serial.begin(9600); // Initialize serial port
AI.begin();
AI.save_jpeg();
Serial.begin(9600); // Initialize serial port
AI.begin();
AI.save_jpeg();
}

void loop()
{
if (!AI.invoke(1, false, false)){} // every invoke it will save jpeg
static int cnt = 0;
// every invoke it will save jpeg
if (!AI.invoke(1, false, false)){
Serial.printf("Record image %d\n", ++cnt);
}
}

```
Expand All @@ -552,14 +556,18 @@ SSCMA AI;

void setup()
{
Serial.begin(9600); // Initialize serial port
AI.begin(&atSerial);
AI.save_jpeg();
Serial.begin(9600); // Initialize serial port
AI.begin(&atSerial);
AI.save_jpeg();
}

void loop()
{
if (!AI.invoke(1, false, true)){} // every invoke it will save jpeg
static int cnt = 0;
// every invoke it will save jpeg
if (!AI.invoke(1, false, true)){
Serial.printf("Record image %d\n", ++cnt);
}
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: XIAO ESP32C3 with Zephyr(RTOS)
keywords:
- Sorftware
image: https://files.seeedstudio.com/wiki/wiki-platform/S-tempor.png
slug: /XIAO-ESP32C3-Zephyr
slug: /xiao_esp32c3-zephyr
last_update:
date: 4/17/2023
author: timo614
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ In this example, software serial communication is set up on pins 2 (RX) and 3 (T
In the Arduino framework, the UART0 peripheral, which corresponds to pins D6/D7 at the hardware level, is referred to as Serial0.
```cpp
#define mySerial Serial0 // Alias for UART0 (Serial0)
#include <HardwareSerial.h>
HardwareSerial mySerial(0); // Alias for UART0 (Serial0)
void setup() {
Serial.begin(9600); // Initialize hardware serial (USB)
mySerial.begin(9600); // Initialize UART0 (Serial0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: XIAO ESP32S3(sense) With Zephyr(RTOS)
keywords:
- Sorftware
image: https://files.seeedstudio.com/wiki/wiki-platform/S-tempor.png
slug: /XIAO-ESP32S3-Zephyr-RTOS
slug: /xiao_esp32s3_zephyr-_rtos
last_update:
date: 3/20/2024
author: timo614
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: XIAO RP2040 With Zephyr(RTOS)
keywords:
- Sorftware
image: https://files.seeedstudio.com/wiki/wiki-platform/S-tempor.png
slug: /XIAO-RP2040-Zephyr-RTOS
slug: /xiao_rp2040_zephyr_rtos
last_update:
date: 3/20/2024
author: timo614
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: XIAO SAMD21 With Zephyr(RTOS)
keywords:
- Sorftware
image: https://files.seeedstudio.com/wiki/wiki-platform/S-tempor.png
slug: XIAO-SAMD21-Zephyr-RTOS
slug: /xiao_samd21_zephyr_rtos
last_update:
date: 04/16/2023
author: timo614
Expand Down

0 comments on commit 85dad16

Please sign in to comment.