Search found 2 matches
- Wed Oct 10, 2018 8:30 am
- Forum: Hardware
- Topic: VC0706 camera and a corrupted jpeg image
- Replies: 0
- Views: 2756
VC0706 camera and a corrupted jpeg image
I've bought a jpeg camera (C429-L36) to connect it to my esp32 With some examples found on the internet, I've done this program first on my computer : int main() { int USB = open( "/dev/ttyUSB1", O_RDWR | O_NOCTTY | O_SYNC ); struct termios tty; /* Set Baud Rate */ cfsetospeed (&tty, (speed_t)B11520...
- Fri Aug 10, 2018 10:48 am
- Forum: ESP-IDF
- Topic: Send byte arrays as a file to a server
- Replies: 1
- Views: 5244
Send byte arrays as a file to a server
Hello everybody I'm doing a personal project with a camera and an ESP32 devkit. I'd like to use a C429 Jpeg camera to take a picture every hour and, via my ESP32 send it to my website. The camera is connected via spi connection to esp32 to transmit the pic. I've seen several example of code to trans...