lewisxhe / esp32-camera-series

🔰 Compatible with all TTGO camera products
MIT License
183 stars 139 forks source link

Compiler error: undefined reference to `startCameraServer()' [ Help needed, please ] #4

Closed Schoose closed 5 years ago

Schoose commented 5 years ago

Hi, i did all the points, described in the wiki: Installation of the libraries and commented out the sensor.h in Adafruit_BME280.h. Unfortunatelly i get the following error while compiling:

sketch/esp32-camera-bme280.ino.cpp.o:(.literal._Z5setupv+0x6c): undefined reference to `startCameraServer()'

sketch/esp32-camera-bme280.ino.cpp.o: In function setup()': /home/dragon/Arduino/Sketchbook/esp32-camera-bme280-master/esp32-camera-bme280/esp32-camera-bme280.ino:291: undefined reference tostartCameraServer()' collect2: error: ld returned 1 exit status exit status 1 Fehler beim Kompilieren für das Board ESP32 Wrover Module.

I tried to compile with the" ESP32 Wrover Module" and with "TTGO LoRa32-OLED V1" -Boards and got always the same error. Could you help me please. Thanks a lot

lewisxhe commented 5 years ago

Hi, i did all the points, described in the wiki: Installation of the libraries and commented out the sensor.h in Adafruit_BME280.h. Unfortunatelly i get the following error while compiling:

sketch/esp32-camera-bme280.ino.cpp.o:(.literal._Z5setupv+0x6c): undefined reference to `startCameraServer()'

sketch/esp32-camera-bme280.ino.cpp.o: In function setup()': /home/dragon/Arduino/Sketchbook/esp32-camera-bme280-master/esp32-camera-bme280/esp32-camera-bme280.ino:291: undefined reference tostartCameraServer()' collect2: error: ld returned 1 exit status exit status 1 Fehler beim Kompilieren für das Board ESP32 Wrover Module.

I tried to compile with the" ESP32 Wrover Module" and with "TTGO LoRa32-OLED V1" -Boards and got always the same error. Could you help me please. Thanks a lot

This is the project directory was reset by Arduino, please open the project directory and rename esp32-camera-bme280-master to esp32-camera-bme280, and ensure that the contents are the same as the following figure. 2019-02-09 10 32 18

Schoose commented 5 years ago

Thank you very much, now it works perfect, with " ESP32 Wrover Module" as Board.

Slavdos commented 5 years ago

Привет, я сделал все пункты, описанные в вики: Установка библиотек и закомментировал sensor.h в Adafruit_BME280.h. К сожалению, я получаю следующую ошибку при компиляции: sketch / esp32-camera-bme280.ino.cpp.o :(. literal._Z5setupv + 0x6c): неопределенная ссылка на startCameraServer () sketch / esp32-camera-bme280.ino.cpp.o: В функции setup()': /home/dragon/Arduino/Sketchbook/esp32-camera-bme280-master/esp32-camera-bme280/esp32-camera-bme280.ino:291: undefined reference tostartCameraServer () ' collect2: error: ld возвращено 1 состояние выхода из состояния выхода 1 Fehler beim Kompilieren für das Плата ESP32 Wrover Module. Я попытался скомпилировать с "ESP32 Wrover Module" и с "TTGO LoRa32-OLED V1" -Boards и получил всегда одну и ту же ошибку. Не могли бы вы мне помочь, пожалуйста. большое спасибо

Этот каталог проекта был сброшен Arduino, пожалуйста, откройте каталог проекта и переименуйте esp32-camera-bme280-masterего esp32-camera-bme280, и убедитесь, что содержимое совпадает со следующим рисунком. 2019-02-09 10 32 18

Slavdos commented 5 years ago

Good day friends! I ask for help, since I have a similar problem on Windows 10, arduino ide and ESP 32 ttgo T-camera. I tried to follow the examples of the solution that was described above, but nothing changes and I still could not compile the code. I am new to this and ask you, please help me to deal with this problem. Thank you very much in advance.

Slavdos commented 5 years ago

include

include

include "freertos/event_groups.h"

include

include

include "esp_camera.h"

include "esp_wifi.h"

/***

/***

/***

/***

define Y9_GPIO_NUM 36

define Y8_GPIO_NUM 15

define Y7_GPIO_NUM 12

define Y6_GPIO_NUM 39

define Y5_GPIO_NUM 35

define Y4_GPIO_NUM 14

define Y3_GPIO_NUM 13

define Y2_GPIO_NUM 34

define VSYNC_GPIO_NUM 5

define HREF_GPIO_NUM 27

define PCLK_GPIO_NUM 25

define AS312_PIN 19

define BUTTON_1 0

undef ENABLE_BME280

undef ENABLE_IP5306

else

define PWDN_GPIO_NUM 26

define RESET_GPIO_NUM -1

define XCLK_GPIO_NUM 32

define SIOD_GPIO_NUM 13

define SIOC_GPIO_NUM 12

define Y9_GPIO_NUM 39

define Y8_GPIO_NUM 36

define Y7_GPIO_NUM 23

define Y6_GPIO_NUM 18

define Y5_GPIO_NUM 15

define Y4_GPIO_NUM 4

define Y3_GPIO_NUM 14

define Y2_GPIO_NUM 5

define VSYNC_GPIO_NUM 27

define HREF_GPIO_NUM 25

define PCLK_GPIO_NUM 19

define AS312_PIN 33

define BUTTON_1 34

endif

define I2C_SDA 21

define I2C_SCL 22

ifdef ENABLE_SSD1306

include "SSD1306.h"

include "OLEDDisplayUi.h"

define SSD1306_ADDRESS 0x3c

SSD1306 oled(SSD1306_ADDRESS, I2C_SDA, I2C_SCL); OLEDDisplayUi ui(&oled);

endif

String ip; EventGroupHandle_t evGroup;

OneButton button1(BUTTON_1, true);

ifdef ENABLE_BME280

define BEM280_ADDRESS 0X77

define SEALEVELPRESSURE_HPA (1013.25)

Adafruit_BME280 bme;

endif

define IP5306_ADDR 0X75

define IP5306_REG_SYS_CTL0 0x00

void startCameraServer(); char buff[128];

ifdef ENABLE_IP5306

bool setPowerBoostKeepOn(int en) { Wire.beginTransmission(IP5306_ADDR); Wire.write(IP5306_REG_SYS_CTL0); if (en) Wire.write(0x37); // Set bit1: 1 enable 0 disable boost keep on else Wire.write(0x35); // 0x37 is default reg value return Wire.endTransmission() == 0; }

endif

void buttonClick() { static bool en = false; xEventGroupClearBits(evGroup, 1); sensor_t *s = esp_camera_sensor_get(); en = en ? 0 : 1; s->set_vflip(s, en); delay(200); xEventGroupSetBits(evGroup, 1); }

void buttonLongPress() { int x = oled.getWidth() / 2; int y = oled.getHeight() / 2; ui.disableAutoTransition(); oled.setTextAlignment(TEXT_ALIGN_CENTER); oled.setFont(ArialMT_Plain_10); oled.clear();

ifdef ENABLE_SLEEP

if (PWDN_GPIO_NUM > 0) {
    pinMode(PWDN_GPIO_NUM, PULLUP);
    digitalWrite(PWDN_GPIO_NUM, HIGH);
}
oled.drawString(x, y, "Press again to wake up");
oled.display();

delay(6000);

oled.clear();
oled.display();
oled.displayOff();

esp_sleep_enable_ext0_wakeup((gpio_num_t )BUTTON_1, LOW);
esp_deep_sleep_start();

endif

}

ifdef ENABLE_SSD1306

void drawFrame1(OLEDDisplay display, OLEDDisplayUiState state, int16_t x, int16_t y) { display->setTextAlignment(TEXT_ALIGN_CENTER);

ifdef SOFTAP_MODE

display->setFont(ArialMT_Plain_10);
display->drawString(64 + x, 25 + y, buff);

else

display->setFont(ArialMT_Plain_16);
display->drawString(64 + x, 35 + y, ip);

endif

if (digitalRead(AS312_PIN)) {
    display->drawString(64 + x, 5 + y, "AS312 Trigger");
}

}

void drawFrame2(OLEDDisplay display, OLEDDisplayUiState state, int16_t x, int16_t y) {

ifdef ENABLE_BME280

static String temp, pressure, altitude, humidity;
static uint64_t lastMs;

if (millis() - lastMs > 2000) {
    lastMs   = millis();
    temp     = "Temp:" + String(bme.readTemperature()) + " *C";
    pressure = "Press:" + String(bme.readPressure() / 100.0F) + " hPa";
    altitude = "Altitude:" + String(bme.readAltitude(SEALEVELPRESSURE_HPA)) + " m";
    humidity = "Humidity:" + String(bme.readHumidity()) + " %";
}
display->setFont(ArialMT_Plain_16);
display->setTextAlignment(TEXT_ALIGN_LEFT);
display->drawString(0 + x, 0 + y, temp);
display->drawString(0 + x, 16 + y, pressure);
display->drawString(0 + x, 32 + y, altitude);
display->drawString(0 + x, 48 + y, humidity);

else

display->setTextAlignment(TEXT_ALIGN_CENTER);
display->setFont(ArialMT_Plain_10);
display->drawString( 64 + x, 5 + y, "Camera Ready! Use");
display->drawString(64 + x, 25 + y, "http://" + ip );
display->drawString(64 + x, 45 + y, "to connect");

endif

}

FrameCallback frames[] = {drawFrame1, drawFrame2};

define FRAMES_SIZE (sizeof(frames) / sizeof(frames[0]))

endif

void setup() { int x = oled.getWidth() / 2; int y = oled.getHeight() / 2;

Serial.begin(115200);
Serial.setDebugOutput(true);
Serial.println();

pinMode(AS312_PIN, INPUT);

Wire.begin(I2C_SDA, I2C_SCL);

ifdef ENABLE_IP5306

bool   isOk = setPowerBoostKeepOn(1);
String info = "IP5306 KeepOn " + String((isOk ? "PASS" : "FAIL"));

endif

ifdef ENABLE_SSD1306

oled.init();
Wire.setClock(100000);  //! Reduce the speed and prevent the speed from being too high, causing the screen
oled.setFont(ArialMT_Plain_16);
oled.setTextAlignment(TEXT_ALIGN_CENTER);
delay(50);
oled.drawString(x, y - 10, "TTGO Camera");
oled.display();

endif

ifdef ENABLE_IP5306

delay(1000);
oled.setFont(ArialMT_Plain_10);
oled.clear();
oled.drawString(x, y - 10, info);
oled.display();
oled.setFont(ArialMT_Plain_16);
delay(1000);

endif

ifdef ENABLE_BME280

if (!bme.begin(BEM280_ADDRESS)) {
    Serial.println("Could not find a valid BME280 sensor, check wiring!");
    while (1);
}

endif

if (!(evGroup = xEventGroupCreate())) {
    Serial.println("evGroup Fail");
    while (1);
}
xEventGroupSetBits(evGroup, 1);

ifdef TTGO_OV2640_V16

/* IO13, IO14 is designed for JTAG by default,
* to use it as generalized input,
* firstly declair it as pullup input */
pinMode(13, INPUT_PULLUP);
pinMode(14, INPUT_PULLUP);

endif

camera_config_t config;
config.ledc_channel = LEDC_CHANNEL_0;
config.ledc_timer = LEDC_TIMER_0;
config.pin_d0 = Y2_GPIO_NUM;
config.pin_d1 = Y3_GPIO_NUM;
config.pin_d2 = Y4_GPIO_NUM;
config.pin_d3 = Y5_GPIO_NUM;
config.pin_d4 = Y6_GPIO_NUM;
config.pin_d5 = Y7_GPIO_NUM;
config.pin_d6 = Y8_GPIO_NUM;
config.pin_d7 = Y9_GPIO_NUM;
config.pin_xclk = XCLK_GPIO_NUM;
config.pin_pclk = PCLK_GPIO_NUM;
config.pin_vsync = VSYNC_GPIO_NUM;
config.pin_href = HREF_GPIO_NUM;
config.pin_sscb_sda = SIOD_GPIO_NUM;
config.pin_sscb_scl = SIOC_GPIO_NUM;
config.pin_pwdn = PWDN_GPIO_NUM;
config.pin_reset = RESET_GPIO_NUM;
config.xclk_freq_hz = 20000000;
config.pixel_format = PIXFORMAT_JPEG;
//init with high specs to pre-allocate larger buffers
config.frame_size = FRAMESIZE_UXGA;
config.jpeg_quality = 10;
config.fb_count = 2;

// camera init
esp_err_t err = esp_camera_init(&config);
if (err != ESP_OK) {
    Serial.printf("Camera init Fail");

ifdef ENABLE_SSD1306

    oled.clear();
    oled.drawString(oled.getWidth() / 2, oled.getHeight() / 2, "Camera init Fail");
    oled.display();

endif

    while (1);
}

//drop down frame size for higher initial frame rate
sensor_t *s = esp_camera_sensor_get();
s->set_framesize(s, FRAMESIZE_QVGA);

button1.attachLongPressStart(buttonLongPress);
button1.attachClick(buttonClick);

ifdef SOFTAP_MODE

uint8_t mac[6];
WiFi.mode(WIFI_AP);
IPAddress apIP = IPAddress(2, 2, 2, 1);
WiFi.softAPConfig(apIP, apIP, IPAddress(255, 255, 255, 0));
esp_wifi_get_mac(WIFI_IF_AP, mac);
sprintf(buff, "TTGO-CAMERA-%02X:%02X", mac[4], mac[5]);
Serial.printf("Device AP Name:%s\n", buff);
if (!WiFi.softAP(buff, NULL, 1, 0)) {
    Serial.println("AP Begin Failed.");
    while (1);
}

else

WiFi.begin(WIFI_SSID, WIFI_PASSWD);
while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");

endif

startCameraServer();

delay(50);

ifdef ENABLE_SSD1306

ui.setTargetFPS(30);
ui.setIndicatorPosition(BOTTOM);
ui.setIndicatorDirection(LEFT_RIGHT);
ui.setFrameAnimation(SLIDE_LEFT);
ui.setFrames(frames, FRAMES_SIZE);
ui.setTimePerFrame(6000);

endif

ifdef SOFTAP_MODE

ip = WiFi.softAPIP().toString();
Serial.printf("\nAp Started .. Please Connect %s hotspot\n", buff);

else

ip = WiFi.localIP().toString();

endif

Serial.print("Camera Ready! Use 'http://");
Serial.print(ip);
Serial.println("' to connect");

}

void loop() {

ifdef ENABLE_SSD1306

if (ui.update()) {

endif

    button1.tick();

ifdef ENABLE_SSD1306

}

endif

} Here is the code I use.... And this error gives Arduino IDE:

sketch\esp32-camera-series_Test1.ino.cpp.o:(.literal._Z5setupv+0x64): undefined reference to `startCameraServer()'

sketch\esp32-camera-series_Test1.ino.cpp.o: In function `setup()':

C:\Users\Slava\Documents\Arduino\esp32-camera-series_Test1/esp32-camera-series_Test1.ino:341: undefined reference to `startCameraServer()'

collect2.exe: error: ld returned 1 exit status

Несколько библиотек найдено для "WiFi.h" Используется: C:\Users\Slava\Documents\ArduinoData\packages\esp32\hardware\esp32\1.0.2\libraries\WiFi Не используется: C:\Program Files\WindowsApps\ArduinoLLC.ArduinoIDE_1.8.21.0_x86__mdqgnx93n4wtt\libraries\WiFi exit status 1 Ошибка компиляции для платы ESP32 Wrover Module.

mgnthe54 commented 3 years ago

Hello, I am having the same problem as on this thread:

https://github.com/lewisxhe/esp32-camera-series/issues/4

I cannot locate the file: esp32-camera-bme280-master

how to access the picture you are showing? : 52515401-0a1d1b00-2c56-11e9-92f6-105c8ace36f9 here are my error messages : Arduino: 1.8.13 (Windows 7), Board: "ESP32 Dev Module, Disabled, Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS), 240MHz (WiFi/BT), QIO, 80MHz, 4MB (32Mb), 921600, None"

sketch\sketch_aug11b.ino.cpp.o:(.literal._Z5setupv+0x38): undefined reference to `startCameraServer()'

sketch\sketch_aug11b.ino.cpp.o: In function `setup()':

C:\Users\PC bureau Gilles\Documents\Arduino\sketch_aug11b/sketch_aug11b.ino:136: undefined reference to `startCameraServer()'

collect2.exe: error: ld returned 1 exit status

Multiple libraries were found for "WiFi.h"

Used: C:\Users\PC bureau Gilles\AppData\Local\Arduino15\packages\esp32\hardware\esp32\1.0.4\libraries\WiFi

Not used: C:\Program Files (x86)\Arduino\libraries\WiFi

exit status 1

Error compiling for board ESP32 Dev Module.

Thank you for all help!

This report would have more information with "Show verbose output during compilation" option enabled in File -> Preferences.