We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#include <DFRobot_AXP313A.h>
DFRobot_AXP313A axp;
void setup() { Serial.begin(115200); Serial.setDebugOutput(true); Serial.println(); while(axp.begin() != 0){ Serial.println("init error"); delay(1000); } axp.enableCameraPower(axp.eOV2640);//设置摄像头供电
The console shows init error every second
The text was updated successfully, but these errors were encountered:
I have the same issue. Did you find a solution for this?
Sorry, something went wrong.
I solved this by changing the settings of the Arduino IDE according to the guide below: https://wiki.dfrobot.com/SKU_DFR0975_FireBeetle_2_Board_ESP32_S3#target_6
No branches or pull requests
#include <DFRobot_AXP313A.h>
DFRobot_AXP313A axp;
void setup() {
Serial.begin(115200);
Serial.setDebugOutput(true);
Serial.println();
while(axp.begin() != 0){
Serial.println("init error");
delay(1000);
}
axp.enableCameraPower(axp.eOV2640);//设置摄像头供电
The console shows init error every second
The text was updated successfully, but these errors were encountered: