Search found 141 matches

by kersing
Tue Dec 12, 2023 7:42 am
Forum: General
Topic: ESP32: IDF-5.1 recommended version?
Replies: 29
Views: 15551

Re: ESP32: IDF-5.1 recommended version?

So I laser cut some wood (plywood) and as it was cold did it inside.... So doghouse for me as everywhere now smells strongly of smoke (though it's starting to fade a little and more like ''heavy' joss-stick addict... IKEA has FÖRNUFTIG, an air purifier. You will need the active carbon filter with i...
by kersing
Sat Dec 09, 2023 4:27 pm
Forum: General
Topic: ESP IDF Installation issues
Replies: 5
Views: 6140

Re: ESP IDF Installation issues

First thing I would do is use a username without spaces so your folder names do not contain spaces. Second, search the forum for the detailed instructions that have helped other users. You aren’t the first with issues with the toolchain and won’t be the last, however there is a wealth of information...
by kersing
Sat Dec 02, 2023 12:04 am
Forum: General
Topic: Rotary encoder + led r and led l
Replies: 6
Views: 3640

Re: Rotary encoder + led r and led l

Please do not double post the same question
by kersing
Tue Nov 28, 2023 11:13 pm
Forum: General
Topic: Slight tweak to Delay component
Replies: 4
Views: 1715

Re: Slight tweak to Delay component

Non integer values would require floating point math to be included in the code which is terrible inefficient if it is just included for delay. Allowing delay to use a larger ms value would be more efficient.
by kersing
Wed Nov 01, 2023 6:50 pm
Forum: Feature Requests
Topic: Populating MySQL database function.
Replies: 45
Views: 70860

Re: Populating MySQL database function.

What is the target for your components? Microcontrollers? I am asking because the picture on the page you refer to shows a MySQL connector ‘component’ which translates the simple python call into a binary protocol used to communicate to MySQL.
by kersing
Thu Oct 26, 2023 9:32 pm
Forum: General
Topic: 1wire_help
Replies: 4
Views: 1001

Re: 1wire_help

Please post your flowcharts, not screenshots that are unreadable.
by kersing
Fri Sep 22, 2023 7:49 am
Forum: User Components
Topic: Quad 7 Segment display is flickering
Replies: 21
Views: 19191

Re: Quad 7 Segment display is flickering

Translation:
thank you very much for the answer

I have another question: is it necessary to use the clear digit icon in the multiplex method.

(As always Martin is too fast, already answering before I had the chance to submit)
by kersing
Wed Sep 13, 2023 8:26 pm
Forum: User Components
Topic: CRC-16 Component
Replies: 17
Views: 6502

Re: CRC-16 Component

It’s a macro which you can import.
by kersing
Tue Sep 05, 2023 8:53 am
Forum: General
Topic: Will install newer version Python corrupt ESP-IDF toolchain?
Replies: 4
Views: 1716

Re: Will install newer version Python corrupt ESP-IDF toolchain?

The latest Python has some breaking changes that might well impact the toolchain. Can’t you install it in a separate location that is not part of your standard path so it doesn’t mess up the ESP toolchain?
by kersing
Wed Aug 30, 2023 4:58 pm
Forum: General
Topic: INT to Byte conversion for decimals
Replies: 4
Views: 1520

Re: INT to Byte conversion for decimals

Hi Rinie, Yes this is possible. Just divide the INT by 100 for byte_high, then take the remainder of the division by 100 and divide it by 10, that is middle and low is the remainder of a division by 10. High, middle and low should be bytes or ints, no floating point variables for this to work. So: H...