Search found 148 matches

by kersing
Tue Nov 28, 2023 11:13 pm
Forum: General
Topic: Slight tweak to Delay component
Replies: 4
Views: 1772

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: 71365

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: 1055

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: 19985

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: 7854

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: 1757

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: 1571

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...
by kersing
Sun Aug 06, 2023 9:44 am
Forum: General
Topic: ThingsBoard using FC?
Replies: 4
Views: 1053

Re: ThingsBoard using FC?

Grafana and MySQL work well together. It’s the database I use for non time series data.
by kersing
Sat Aug 05, 2023 11:10 pm
Forum: General
Topic: ThingsBoard using FC?
Replies: 4
Views: 1053

Re: ThingsBoard using FC?

I used it for LoRaWAN devices some time ago but had a hard time upgrading versions. They switched postgresql version at some point and the upgrade procedure failed to work properly, tried all suggested solutions Google presented and ended up trowing the towel and scrapping the cloud VM I was using f...
by kersing
Sat Jul 22, 2023 9:30 pm
Forum: General
Topic: RP2040 ram and rom usage?
Replies: 23
Views: 3033

Re: RP2040 ram and rom usage?

Up to 16MB depending on what the manufacturer of the module fitted. I think most will have 2MB.