Errors Compiling Esp3d 3.0 with Esp32 2.0 package under Arduino 1.8.10 #1070
NimbleMotorsports
started this conversation in
Questions
Replies: 1 comment 4 replies
-
No, streaming from local sd is not supported yet about compilation issue what version of 3.0 are you using and what esp32 core version do you use ? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I hacked into the uart pins on a creality 1.3 board, so I could attach a esp32-cam to the pins, and use a wireless connection to upload prints to the esp32 cam sd card and print from there (because my pc sometimes crashes or sleeps and this caues the print to fail)
I got this error when I try to compile esp3d 3.0 \Users\Jack\AppData\Local\Temp\arduino_build_134046\sketch\src\core\esp3d_hal.cpp:105:5: error: '::analogWrite' has not been declared
Which I assume the "::" prefix means the analogWrite function that isn't in the esp3d package, since this call is referenced in the esp3d::analogWrite
I got past this by just deleting the "::" in the source (which might just create infinite recursion), but I got another error after this, which I can't recall, but the above error is bad enough, if anyone might know why I get this error.
I went back the Esp3d 2.1 and esp32 1.0 so it compiles and runs, but that version can't upload to the esp32-cam sd card. I've been looking through the 2.1 code and find it difficult to understand, even worse is the GUI. I'm really tempted now to just write my own much simpler version that runs from a single .ino like I had to do recently for esp32-cam to get rtsp video. In fact I might add the printer commands and sdcard stuff to that code if I can run two servers in the esp32.
Beta Was this translation helpful? Give feedback.
All reactions