Search found 1701 matches

by BenR
Mon Jun 13, 2022 10:27 am
Forum: Bug Reports
Topic: PIC16(L)F18446 missing PortB IOC on Interrupt Icon Properties
Replies: 4
Views: 1335

Re: PIC16(L)F18446 missing PortB IOC on Interrupt Icon Properties

Thanks for letting us know, I've made the changes for you and they should now be available via the library updates.
by BenR
Mon Jun 13, 2022 10:06 am
Forum: General
Topic: XPT2041 & SPI Conflict
Replies: 11
Views: 2990

Re: XPT2041 & SPI Conflict

Hello, Aha I thought the SPI pins were shared with another component but they aren't they are just for the temperature sensor so it's strange. I've looked at the ESP32 problem pins and the pins your currently using look like they should be fine. It could be a timing problem, the datasheet for the MA...
by BenR
Mon Jun 13, 2022 9:55 am
Forum: Bug Reports
Topic: RPI PICO SPI problem
Replies: 8
Views: 2126

Re: RPI PICO SPI problem

Hello,

Please can you post your .fcfx project file and we will investigate for you.
by BenR
Fri Jun 10, 2022 6:27 pm
Forum: Feature Requests
Topic: Encryption component
Replies: 2
Views: 1227

Re: Encryption component

We could do something like enigma where it's a basic substitution cypher. Easy to implement but also fairly easy to brute force with a computer.

Or we could go the route of a public private key system using primes. Much harder to brute force but a lot harder to code.
by BenR
Fri Jun 10, 2022 5:37 pm
Forum: General
Topic: ESP32 with SHA256 anyone?
Replies: 5
Views: 1722

Re: ESP32 with SHA256 anyone?

Hello, It's still part of our plan. We have upgraded the tcpip simulation dll so it can do https comms though we've not had chance to roll this out yet. We also have plans for fc10 and app developer that means encryption is a bigger deal certainly for esp and rpi that should be able to do it fairly ...
by BenR
Fri Jun 10, 2022 4:24 pm
Forum: App Developer
Topic: Calculate Standard Deviation
Replies: 7
Views: 6751

Re: Calculate Standard Deviation

Hi Wayne, I've had a quick go at a component for you and pushed it to the library update system. Once you have it it should appear under storage. The source project is here if you're interested. StandardDeviation.fcfx Let me know how you get on. If it works ok I'll try and add a DSP version too. A m...
by BenR
Fri Jun 10, 2022 1:54 pm
Forum: General
Topic: Help with PID code (does it work?)
Replies: 7
Views: 1959

Re: Help with PID code (does it work?)

Hello, Yes that looks fine. Please can you check you're using the latest components by clicking on Help -> Library Updates. This might break your DSP connections so I've reconnected things with the latest components for you here. All seems to be working in simulation so hopefully should also work ok...
by BenR
Fri Jun 10, 2022 11:32 am
Forum: Feature Requests
Topic: max7219 8 digits 7 segment display
Replies: 14
Views: 4230

Re: max7219 8 digits 7 segment display

Hello,

Thanks for your suggestion yes this should be possible. Do you have a specific board in mind you can link us to just in case it is wired in a specific way.
by BenR
Fri Jun 10, 2022 10:31 am
Forum: App Developer
Topic: Calculate Standard Deviation
Replies: 7
Views: 6751

Re: Calculate Standard Deviation

Hi Wayne,

Good suggestion, we could certainly look to add this into the DSP library for you. Would you want a none DSP version too?
by BenR
Fri Jun 10, 2022 10:28 am
Forum: General
Topic: ili9341 various macros
Replies: 8
Views: 1958

Re: ili9341 various macros

Hello,

The Window macro basically defines an area of the display where pixel data will be drawn.

Macros like plot will create a window of 1x1 pixel before sending the foreground colour.

Macros like fastplot will just send the colour without creating the window.