Search found 99 matches

by tepalia02
Wed Apr 20, 2022 9:48 am
Forum: General Discussion and Questions
Topic: 'None' in serial communication
Replies: 7
Views: 1881

Re: 'None' in serial communication

Roberthh wrote:
Tue Apr 19, 2022 12:32 pm
if you receive None with serial.read(), then there is no data availabla at that very moment. It does not tell you anything about the reason.
Can it occur due to a dead sensor also?
by tepalia02
Wed Apr 20, 2022 9:37 am
Forum: ESP8266 boards
Topic: urequests.get() wont work anymore.
Replies: 3
Views: 7859

Re: urequests.get() wont work anymore.

Hi, you may get some ideas from this thread : viewtopic.php?t=5971
by tepalia02
Tue Apr 19, 2022 11:46 am
Forum: ESP32 boards
Topic: ESP-32-c3 BLE not working
Replies: 2
Views: 2455

Re: ESP-32-c3 BLE not working

C3 and WROOM support different bluetooth protocols. WROOM supports Bluetooth v4.2 , and C3 supports Bluetooth 5. I think you can try the following example. It is for bluetooth classic in ESP32. https://www.theengineeringprojects.com/2021/11/esp32-bluetooth-classic.html This document may also help yo...
by tepalia02
Tue Apr 19, 2022 11:26 am
Forum: General Discussion and Questions
Topic: 'None' in serial communication
Replies: 7
Views: 1881

Re: 'None' in serial communication

Hi, which library/code are you using?
by tepalia02
Mon Apr 18, 2022 2:09 pm
Forum: ESP32 boards
Topic: Compiling Micropython - Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.
Replies: 2
Views: 2114

Re: Compiling Micropython - Guru Meditation Error: Core 1 panic'ed (StoreProhibited). Exception was unhandled.

The Guru medication error sometimes occurs due to a bad USB cable or inappropriate power supply. Have you checked them out? Here is also a thread that may give you some hints: https://github.com/espressif/arduino-esp32/issues/3634
by tepalia02
Sun Apr 17, 2022 1:46 pm
Forum: ESP32 boards
Topic: ESP32-S3 WROOM 1 - WLAN.active(True) Hangs
Replies: 1
Views: 924

Re: ESP32-S3 WROOM 1 - WLAN.active(True) Hangs

Hi, it looks like many other people faced the same problem before. You may get some tips from here: viewtopic.php?f=18&t=5835
by tepalia02
Sun Apr 17, 2022 1:38 pm
Forum: General Discussion and Questions
Topic: External bluetooth module
Replies: 4
Views: 1510

Re: External bluetooth module

Hi, which library are you asking about? This one? https://docs.micropython.org/en/latest/ ... tooth.html
Looks like it does not provide the facility to control any external bluetooth module. Let's see if anyone else says otherwise.
by tepalia02
Sat Apr 16, 2022 2:07 am
Forum: Development of MicroPython
Topic: C++ native modules for Micropython?
Replies: 5
Views: 3269

Re: C++ native modules for Micropython?

Hi, have you seen this thread? Was it of any help?
https://stackoverflow.com/questions/905 ... ython-in-c
by tepalia02
Fri Apr 15, 2022 10:49 am
Forum: ESP8266 boards
Topic: DHT11 basic functional test
Replies: 5
Views: 2743

Re: DHT11 basic functional test

Is the problem solved now? I think you'd better test your DHT11 with this tutorial. This is based on Arduino and DHT11. https://www.theengineeringprojects.com/2020/12/interfacing-temperature-humidity-sensor-arduino.html It explains DHT11's working principle, pinout, protocol and interfacing with oth...