Search found 50 matches

by MasterOfGizmo
Tue May 23, 2023 6:21 am
Forum: ESP32 boards
Topic: BLE config le_secure or bond - unknown config param
Replies: 8
Views: 28956

Re: BLE config le_secure or bond - unknown config param

The changelog from Wed, 26 Apr 2023 for version v1.20.0 includes the line:

Code: Select all

mpconfigport: enable BLE synchronous events and pairing/bonding
Does that mean that bonding is now supposed to work on esp32?
by MasterOfGizmo
Fri Sep 30, 2022 9:25 am
Forum: Programs, Libraries and Tools
Topic: Simple 3D graphics
Replies: 0
Views: 173957

Simple 3D graphics

Having seen a bunch of awfully slow graphics demos on Youtube I was wondering if stock micropyton is able to do simple 3D graphics in an acceptable manner. It can: https://youtube.com/shorts/EcZD9xHFwBc The display driver and the graphics routines as well as the 3d stuff is written in Micropython. T...
by MasterOfGizmo
Sat Sep 10, 2022 8:11 am
Forum: General Discussion and Questions
Topic: Continuity Tester
Replies: 6
Views: 31060

Re: Continuity Tester

mc2software wrote:
Fri Sep 09, 2022 12:54 pm
Do the two boards need to share a ground?
Uhm ... yes, since electricity flows in a closed loop. You cannot power something using a single wire only.

Are you sure you are the right person to setup and test mains?
by MasterOfGizmo
Fri Jun 24, 2022 8:38 pm
Forum: General Discussion and Questions
Topic: Why no binary releases on github?
Replies: 4
Views: 4131

Re: Why no binary releases on github?

Thanks for the offer.

Anything easy to download and to parse would be great. Most convenient would be a single file containing at least the latest version number and individual links to all the matching binaries.

I'll open an issue for that.
by MasterOfGizmo
Thu Jun 23, 2022 5:44 pm
Forum: General Discussion and Questions
Topic: Why no binary releases on github?
Replies: 4
Views: 4131

Why no binary releases on github?

Why are there no binary releases on github? Currently some binary images are statically burnt into my uPIDE allowing the user to flash a firmware. I would like to automate that. For that i'd need to way to figure out which the latest version is and where to download the binaries from. Currently e.g....
by MasterOfGizmo
Thu Jun 23, 2022 10:48 am
Forum: ESP32 boards
Topic: Pulse counter support
Replies: 27
Views: 41645

Re: Pulse counter support

I've seen it. If I count right, there are now 4 implementations for ESP32 plus the generic GPIO based version. That does not improve the situation. What's the problem with that? Improvements IMHO are great. The older versions didn't look very pleasing to me and weren'r working properly. I'd actuall...
by MasterOfGizmo
Thu Jun 23, 2022 9:46 am
Forum: ESP32 boards
Topic: Pulse counter support
Replies: 27
Views: 41645

Re: Pulse counter support

There are now several implementations for this. I have started myself this some time ago: https://github.com/harbaum/micropython/blob/ESP32PCNT/ports/esp32/machine_pcnt.c And recently this has been implemented: https://github.com/micropython/micropython/compare/master...jonathanhogg:esp32_machine_co...
by MasterOfGizmo
Thu May 05, 2022 11:02 am
Forum: Development of MicroPython
Topic: Machine readable documentation
Replies: 1
Views: 2687

Machine readable documentation

For my uPIDE micropython IDE I would like to do some micropython specific conext help. I would like to use the .rst files as a basis. Like e.g. this file for the machine module: https://github.com/micropython/micropython/blob/master/docs/library/machine.rst But I am unable to find anything that can ...
by MasterOfGizmo
Wed Apr 06, 2022 1:55 pm
Forum: Programs, Libraries and Tools
Topic: Android Bluetooth remote control for µP/ESP32
Replies: 2
Views: 4270

Re: Android Bluetooth remote control for µP/ESP32

Don't know about HM-10 that much. What is the maximum range of HM-10? It's just a BLE device, so 10m I'd guess. But this isn't actually using a HM-10. It's using the ESP32's own bluetooth to mimic the HM-10. That allows the ESP32 to be used with all those apps that are meant to talk to the HM-10.
by MasterOfGizmo
Wed Apr 06, 2022 12:43 pm
Forum: Development of MicroPython
Topic: Register a native NIC?
Replies: 0
Views: 11195

Register a native NIC?

Can I add my own native python NIC to a setup that is otherwise network ready? E.g. the ESP32 port or the RP2040 port from Wiznet both come with everything needed for networking. Can I add a pure python NIC to these? If I do socket io on the RP2040 with µP from https://github.com/Wiznet/RP2040-HAT-M...