Search found 1797 matches

by BenR
Tue Jul 23, 2024 2:05 pm
Forum: Projects - Embedded
Topic: ESP32 Over The Air (OTA) reprogramming
Replies: 4
Views: 2962

Re: ESP32 Over The Air (OTA) reprogramming

Aha looks like you may be able to simply replace example_connect(); with example_connect(ssid, passwd);

So this might be a starting point. You would then have to declare and populate the ssid and password variables.
by BenR
Tue Jul 23, 2024 2:01 pm
Forum: Projects - Embedded
Topic: ESP32 Over The Air (OTA) reprogramming
Replies: 4
Views: 2962

Re: ESP32 Over The Air (OTA) reprogramming

Hmm the bootloader project you build using the IDF is where the username and pawword are stored. I'm trying to find the source of the example_connect() function but currently not been able to spot where it's declared. Basically what might work is storing the wifi/password into the flash using the ES...
by BenR
Tue Jul 23, 2024 12:59 pm
Forum: General
Topic: Measure PWM Current with a Modified Moving Average
Replies: 3
Views: 633

Re: Measure PWM Current with a Modified Moving Average

I've now added a floating point version of the MMA filter, let us know how you get on with using it.

I'll try and find some time later today to also do an integer version. Edit - this is now there too.
by BenR
Tue Jul 23, 2024 11:31 am
Forum: General
Topic: Measure PWM Current with a Modified Moving Average
Replies: 3
Views: 633

Re: Measure PWM Current with a Modified Moving Average

Hello, There is a running average component in Flowcode 10 already, You may need to do a full library update to get these if you don't have them already. It's not quite the same as MMA in that it takes a percentage of the filtered value and a percentage of the new sensor value. e.g. 90% old + 10% ne...
by BenR
Tue Jul 23, 2024 11:19 am
Forum: Feature Requests
Topic: Comparador analogico
Replies: 2
Views: 333

Re: Comparador analogico

Hello, There's an example of enabling a comparator interrupt here using the custom interrupt. https://www.flowcode.co.uk/wiki/index.php?title=Custom_Interrupts_-_PICmicro It should then just be a case of writing a control value to the CMCON register using a C icon. Let us know how you're getting on.
by BenR
Tue Jul 23, 2024 10:44 am
Forum: Feature Requests
Topic: Change max character can send by mqtt Publish
Replies: 3
Views: 459

Re: Change max character can send by mqtt Publish

Hello,

Many thanks for the suggestion, I've added this into the component for you now.
by BenR
Tue Jul 23, 2024 10:10 am
Forum: User Components
Topic: ILI9341 SPI
Replies: 10
Views: 962

Re: ILI9341 SPI

Might also be worth doing a one second flasher test to make sure your chip configuration is ok. From the video it looks like it may be running slow and so the 5s delay at the start of your program could be taking a long time to complete? https://www.flowcode.co.uk/wiki/index.php?title=One_second_LED...
by BenR
Mon Jul 22, 2024 5:30 pm
Forum: Feature Requests
Topic: can add change Qos mqtt client
Replies: 2
Views: 400

Re: can add change Qos mqtt client

Hello,

It looks like we specify MQTT v3.1 when performing a publish which is prior to the QoS functionality. I'll investigate and see if we can move the component to 3.1.1 which includes the QoS bits and also what additional this would require.
by BenR
Mon Jul 22, 2024 5:02 pm
Forum: Bug Reports
Topic: Bitmap drawer is death after 2023
Replies: 1
Views: 606

Re: Bitmap drawer is death after 2023

Hello,

Many thanks for letting us know. I've now found and hopefully resolved the problem via the Help -> Library updates.

Let us know how you get on.
by BenR
Mon Jul 22, 2024 3:34 pm
Forum: User Components
Topic: ILI9341 SPI
Replies: 10
Views: 962

Re: ILI9341 SPI

Hello, In the Print component macro you have set the font parameter to 1 but this should be 0 as you only have font 0 defined. Prog.jpg Also you print the string right before clearing the display, do you need a delay or something in here to give you time to see the text? On your blank screen are you...