Search found 1035 matches

by chipfryer27
Fri Mar 08, 2024 9:08 am
Forum: App Developer
Topic: Worked examples for Serial, HTTP and MQTT
Replies: 21
Views: 632

Re: Worked examples for Serial, HTTP and MQTT

Hi

Created a chart based on example. When simulating the esp32 component wouldn't allow connection, but if I changed so the Network component provided connection I could connect.

Didn't get any further as I had to leave.

Regards
by chipfryer27
Fri Mar 08, 2024 6:19 am
Forum: App Developer
Topic: Worked examples for Serial, HTTP and MQTT
Replies: 21
Views: 632

Re: Worked examples for Serial, HTTP and MQTT

Hi

I'm hoping to try these at the weekend. I'll let you know how I get on.

Regards
by chipfryer27
Wed Mar 06, 2024 5:30 pm
Forum: App Developer
Topic: Worked examples for Serial, HTTP and MQTT
Replies: 21
Views: 632

Re: Worked examples for Serial, HTTP and MQTT

Hi Steve

Only now with a new laptop running W11 can I "play" with the Web Developer and your first example is what I was going to do straight away :) Well once I finish setting it up the way I want.

Eager to try but work keeping me away. I'll let you know how I get on though.

Regards
by chipfryer27
Tue Mar 05, 2024 5:13 pm
Forum: Bug Reports
Topic: Problems ILI9341 SPI after update
Replies: 6
Views: 237

Re: Problems ILI9341 SPI after update

Hi Did you try rolling back the component to a previous version? Library Updates / Full Database / Show up to date files. You can then select a previous version by selecting your component and clicking New Revision and selecting the previous version you wish to try. Do note that the next time you ru...
by chipfryer27
Mon Mar 04, 2024 5:58 pm
Forum: Feature Requests
Topic: 3 ideas for FC
Replies: 6
Views: 238

Re: 3 ideas for FC

Hi Usually I just save a copy at key points with a brief description. However as FC can automatically create a backup every x-seconds (Global Settings > Application), which overwrites previous, maybe an option to overwrite and if not checked it creates a "new" timestamped backup file ? Obviously you...
by chipfryer27
Sun Mar 03, 2024 9:27 pm
Forum: General
Topic: PIC18F25K22 UART ERROR
Replies: 183
Views: 62809

Re: PIC18F25K22 UART ERROR

Hi First I'd follow Martins's suggestion (as always) regarding the calculations. Do you really need (for example) 123.xyz if 123.x could do instead? Reducing these times will result in significant savings. Increase comms speeds to all sensors / modules to maximum that allows reliable communications ...
by chipfryer27
Sun Mar 03, 2024 11:57 am
Forum: General
Topic: PIC18F25K22 UART ERROR
Replies: 183
Views: 62809

Re: PIC18F25K22 UART ERROR

Hi

Very helpful info.

I think the only sensor that used floating point was the 6050 and it may be possible to use integers, or at least limit the decimal places for those readings.

Even with the PIC running a lot slower than the ESP, the mS results do at first look seem quite odd.

Regards
by chipfryer27
Sun Mar 03, 2024 7:50 am
Forum: General
Topic: PIC18F25K22 UART ERROR
Replies: 183
Views: 62809

Re: PIC18F25K22 UART ERROR

Hi Floating point calculations can be quite resource heavy on an 8-bit. The 25K22 has an internal oscillator that runs at 16MHz and you can also use the 4 x PLL to up the speed to 64MHz, thereby improving speed by a factor of four. The peripherals will still take time to obtain data, but at least ca...
by chipfryer27
Sat Mar 02, 2024 8:02 pm
Forum: General
Topic: PIC18F25K22 UART ERROR
Replies: 183
Views: 62809

Re: PIC18F25K22 UART ERROR

Hi

I agree that something doesn't seem right as those times seem far too long. When I get a chance I'll run a couple of tests too.

Regards
by chipfryer27
Sat Mar 02, 2024 8:04 am
Forum: General
Topic: PIC18F25K22 UART ERROR
Replies: 183
Views: 62809

Re: PIC18F25K22 UART ERROR

Hi Good in getting the esp "sends" down. That could probably be improved further by looking for a response (any, with a timeout) instead of the delay. I'm really surprised at how long the calculations are taking though. I've very limited access to things just now but when I get a chance I'll try a c...