Search found 4 matches

by user_pico1
Wed Jun 29, 2022 6:42 pm
Forum: Drivers for External Components
Topic: Is anybody working on a driver for OV7670 camera module?
Replies: 1
Views: 24627

Re: Is anybody working on a driver for OV7670 camera module?

Hi, It would be cool to have a driver for OV7670 camera. I know there's already OpenMV project. But I need LoRaWAN connectivity and the plan is to use LoPy with a OV7670 camera. Can anyone help to connect camera module to rapsberry pi pico with micropython? I need to recieve jpeg images from camera.
by user_pico1
Sun May 29, 2022 2:53 pm
Forum: ESP8266 boards
Topic: urequests - Error sending to Telegram bot
Replies: 4
Views: 11443

Re: urequests - Error sending to Telegram bot

KJM wrote:
Sun May 29, 2022 12:09 am
What happens if you substitute http for https ?
In this case error "Redirects not yet supported"
But I have no problem with sending requests on https google.
by user_pico1
Sat May 28, 2022 5:00 pm
Forum: ESP8266 boards
Topic: requests.post OSError: [Errno 5] EIO
Replies: 6
Views: 8440

Re: requests.post OSError: [Errno 5] EIO

I have the same issue (MicroPython v1.12 on 2019-12-20; ESP8266): import urequests as u req = u.get("https://api.telegram.org/bot<my_token>/sendMessage?text=hallo&chat_id=<my_chat_id>") , i get this: ssl_handshake_status: -40 Traceback (most recent call last): File "", line 1, in File "urequests.py...
by user_pico1
Sat May 28, 2022 3:51 pm
Forum: ESP8266 boards
Topic: urequests - Error sending to Telegram bot
Replies: 4
Views: 11443

Re: urequests - Error sending to Telegram bot

I've only recently gotten into ESPs and Micropython. I want to send a message from ESP8266 (D1 Mini V3 NodeMCU ESP8266EX) to Telegram bot. import urequests . . . urequests.post("https://api.telegram.org/bot" + botToken + "/sendMessage?chat_id=" + str(chatId) + "&text=" + text) Sending the message w...