Search found 779 matches

by stefan.erni
Tue Sep 17, 2024 9:15 am
Forum: Feature Requests
Topic: Component for advanced 6-axis IMU ISM330BX and LSM6DSV16BX
Replies: 3
Views: 1739

Re: Component for advanced 6-axis IMU ISM330BX and LSM6DSV16BX

Hi Ben

I can do without I3C and FIFO.
I am interested in the fusion data yaw, pitch roll.
So I can send these values to the Appdeveloper with USB.
In this way I don't need to calculate fusion with Flowcode.

Fusion yaw, pitch roll
2024-09-17_10-01-35.PNG
2024-09-17_10-01-35.PNG (31.97 KiB) Viewed 47 times
by stefan.erni
Mon Sep 16, 2024 12:43 pm
Forum: Feature Requests
Topic: new component MAX31865 for PT100/PT1000
Replies: 0
Views: 58

new component MAX31865 for PT100/PT1000

Hi Ben Flowcode already offers some components to measure the temperature. Something to measure with a PT1000 is still missing. As described in the data sheet, this PT1000 offers some advantages. Would it be possible to have a component like MAX31865 for the PT1000? Maybe you can extend the existing...
by stefan.erni
Fri Sep 13, 2024 4:27 pm
Forum: Feature Requests
Topic: Write component property to sd-card
Replies: 7
Views: 1004

Re: Write component property to sd-card

Hi Ben

I add but still fail compile to hex. Sim is always ok
2024-09-13_17-23-08.PNG
2024-09-13_17-23-08.PNG (26.97 KiB) Viewed 708 times
2024-09-13_17-23-31.PNG
2024-09-13_17-23-31.PNG (68.73 KiB) Viewed 708 times
by stefan.erni
Fri Sep 13, 2024 3:45 pm
Forum: Feature Requests
Topic: Write component property to sd-card
Replies: 7
Views: 1004

Re: Write component property to sd-card

Hi Ben

Yes this way is perfect.
Unfortunately working only in the simulation. I cannot compile to hex. There is a fail.
CSV_post2.fcfx
(30.28 KiB) Downloaded 29 times
2024-09-13_15-59-32.PNG
2024-09-13_15-59-32.PNG (86.89 KiB) Viewed 726 times
by stefan.erni
Thu Sep 12, 2024 9:38 am
Forum: Feature Requests
Topic: Write component property to sd-card
Replies: 7
Views: 1004

Re: Write component property to sd-card

Hi Ben

I have tried but I probably only get the index of the switch and not the text of the property
CSV_number_lsm9.fcfx
(25.93 KiB) Downloaded 39 times
2024-09-12_10-31-54.PNG
2024-09-12_10-31-54.PNG (61.66 KiB) Viewed 922 times
by stefan.erni
Wed Sep 11, 2024 11:57 am
Forum: Feature Requests
Topic: Write component property to sd-card
Replies: 7
Views: 1004

Re: Write component property to sd-card

It's working in AppDevelopper
but not in the ESP32 program
property_test1.fcsx
(11.63 KiB) Downloaded 36 times
2024-09-11_08-56-07.PNG
2024-09-11_08-56-07.PNG (128 KiB) Viewed 965 times
2024-09-11_09-00-02.PNG
2024-09-11_09-00-02.PNG (203.07 KiB) Viewed 965 times
by stefan.erni
Wed Sep 11, 2024 10:35 am
Forum: Projects - Embedded
Topic: PIC, changing CAN bit speed Settings. BRP BRGCON1
Replies: 4
Views: 418

Re: PIC, changing CAN bit speed Settings. BRP BRGCON1

Hi jay_dee

I don't know anything about CAN.
You can find more information in the PDF
For my PIC32 I used C-code like this
2024-09-11_10-09-18.PNG
2024-09-11_10-09-18.PNG (64.9 KiB) Viewed 383 times
by stefan.erni
Tue Sep 10, 2024 3:22 pm
Forum: General
Topic: ESP32 Interrupt test if correct
Replies: 8
Views: 1681

Re: ESP32 Interrupt test if correct

Hi Martin

Yes, your suggestion works. As long as the interrupt is only enabled once.
The interrupt should never be stopped
or be restarted.


regards

Stefan
by stefan.erni
Tue Sep 10, 2024 2:24 pm
Forum: Feature Requests
Topic: Write component property to sd-card
Replies: 7
Views: 1004

Write component property to sd-card

Hi Ben

I would like to write the component propertis at the beginning of the Excel file.
Append string works with a text, but not with the build in function created string.
Does it work the way I program it?
by stefan.erni
Fri Sep 06, 2024 2:45 pm
Forum: General
Topic: ESP32 Interrupt test if correct
Replies: 8
Views: 1681

Re: ESP32 Interrupt test if correct

Hi Martin I will test this soon. I found the fitting command and parameter. timer_pause(timer_group_tgroup_num, timer_idx_ttimer_num) How exactly are these parameters to be used? just like this? timer_pause(timer_group_t0,timer_idx_t0) for Timer group number, 0 and Timer index, 0 for hw_timer[0] 202...