Search found 1730 matches

by BenR
Mon Jan 04, 2021 4:13 pm
Forum: General
Topic: Installation problem Toolchain ESP32
Replies: 1
Views: 1592

Re: Installation problem Toolchain ESP32

Hello, Are you using the python and git from the installer or supplied by yourself. We have had reports that using your own Python can cause issues if certain commands are not supported. We have also had a report that the toolchain download from our site had issues but direct from Espressif was ok. ...
by BenR
Mon Jan 04, 2021 4:10 pm
Forum: General
Topic: Pullup and Pulldown Resistor GPIO ESP32
Replies: 2
Views: 2183

Re: Pullup and Pulldown Resistor GPIO ESP32

Hello, You can try this, replacing 0 with the GPIO number you want to add the pull up or pull down to. Pull Up gpio_set_pull_mode(0, GPIO_PULLUP_ONLY); Pull Down gpio_set_pull_mode(0, GPIO_PULLDOWN_ONLY); Pull Up and Down gpio_set_pull_mode(0, GPIO_PULLUP_PULLDOWN); Turn off again gpio_set_pull_mode...
by BenR
Mon Jan 04, 2021 4:06 pm
Forum: General
Topic: DSP FIR filter component coefficients
Replies: 38
Views: 18919

Re: DSP FIR filter component coefficients

Hello,

Great info there thanks that's much appreciated.

I'll have a play and see what I can do to. Maybe something like a comma seperated text field?

Relying on external files is a good idea but can potentially get messy, especially if things need to change on the fly.

Hmmm :D
by BenR
Mon Jan 04, 2021 2:16 pm
Forum: Feature Requests
Topic: PCF8591T ON FLOWCODE 9
Replies: 1
Views: 2107

Re: PCF8591T ON FLOWCODE 9

Thanks, I'm on it for you.
by BenR
Mon Jan 04, 2021 11:30 am
Forum: General
Topic: DSP FIR filter component coefficients
Replies: 38
Views: 18919

Re: DSP FIR filter component coefficients

Hello,

It's mainly down to how many we code in to the properties window. I can certainly add more. How many would you like to see?

Do you need the co-efficients to be editable reather then fixed via properties?
by BenR
Mon Jan 04, 2021 11:15 am
Forum: General
Topic: Forum Upload wont accept FCSX files
Replies: 2
Views: 1909

Re: Forum Upload wont accept FCSX files

Hello,

Thanks for letting us know. I think it's on the list to fix but I'll check for you :D
by BenR
Mon Jan 04, 2021 11:11 am
Forum: Bug Reports
Topic: APP-Developer COM Port component
Replies: 3
Views: 2352

Re: APP-Developer COM Port component

Hello, Also if I create a run time of it in oder to publish my programm it is not possible to change the COM port inide the COM-Port component (COM-Port Number) later on. It stays always with the COM Port number that was defined during programming. When you create a Flowcode App, have you exposed th...
by BenR
Sat Jan 02, 2021 11:28 pm
Forum: General
Topic: Components that already worck with ESP32
Replies: 10
Views: 6194

Re: Components that already worck with ESP32

Hello

Most components should work out of the box except components that require tight high speed timings for example the ws2812 led, dht11 and 22 and 1 wire communications. We are working on adding support for these and hopefully they will be available soon.
by BenR
Wed Dec 30, 2020 10:02 pm
Forum: Bug Reports
Topic: Bluetooth spp does't work in ESP32
Replies: 29
Views: 22793

Re: Bluetooth spp does't work in ESP32

Hello,

In my test program I was echoing back bytes and that was working fine. Can you try this and see if it's still resetting for you.

I'll try and replicate the string problems here.
by BenR
Wed Dec 30, 2020 9:52 pm
Forum: General
Topic: Is there a discrepancy between WIKI/forum advise installing ESP toolset and Espressif official docs?
Replies: 4
Views: 2977

Re: Is there a discrepancy between WIKI/forum advise installing ESP toolset and Espressif official docs?

Hello, We recommend using the IDF 4.1 because that's what we have used to do all our testing. The ESP32 S2 is as far as I'm aware not yet available or is in alpha/beta and so currently we recommend the ESP32 S original device for any meaningful dev work. Newer versions of the IDF can be used but at ...