Search found 1856 matches

by medelec35
Sun Jun 29, 2025 10:28 am
Forum: Bug Reports
Topic: ESP32 ADC not working
Replies: 22
Views: 1337

Re: ESP32 ADC not working

Hello.
Yes there is.
If you run Library updates and change Files in use to full database, the latest ADC CAL should resolve your issues.
You should now be able to used ADC2 instead of being restricted to ADC1.
You will still need be wary of sone pins:
Pins used with caution.png
Pins used with caution.png (157.79 KiB) Viewed 118 times
by medelec35
Fri Jun 27, 2025 12:33 am
Forum: General
Topic: Syntax Error
Replies: 8
Views: 356

Re: Syntax Error

Hi Abhi I have looked at the files you sent. The are way to large for me to track down the issue. My guess it could be a recursive function or manual macro linking created a circular reference. Whatever it is the compiler does not like it at all. Looking at the .as file the issues is within Set_Para...
by medelec35
Wed Jun 25, 2025 3:34 pm
Forum: General
Topic: Syntax Error
Replies: 8
Views: 356

Re: Syntax Error

Hello.
Just the words syntax error showing for error is normally unconnected pins.
If you can post your .fcfx, .c and .msg.txt files, then we can help you further.
The bold number you have shown, will refer to a line number within a file ,the error could be found.
by medelec35
Wed Jun 25, 2025 8:16 am
Forum: General
Topic: error or bug
Replies: 14
Views: 1604

Re: error or bug

Hello. The compiler is warning you because it sees the same piece of code (the one that reads or writes the whole port) being used both in your main program and inside an interrupt. It does this to make sure you don’t ever run that code in both places at once, which could corrupt data. In your IOC_P...
by medelec35
Tue Jun 24, 2025 10:59 pm
Forum: General
Topic: Please help me change the properties of components
Replies: 6
Views: 299

Re: Please help me change the properties of components

Hello. During code generation, the value (or string) you enter is compiled into a constant scoped to that specific component handle. Because it’s scoped, identical property names never clash. It doesn’t matter how many Host properties you create, by adding additional IotMadeEasy components —on the e...
by medelec35
Tue Jun 24, 2025 10:40 pm
Forum: General
Topic: error or bug
Replies: 14
Views: 1604

Re: error or bug

Hello from the project you sent me via PM it is what I thought. You should not be using any delays within interrupts. What will make it worse if you uses delays in both interrupts and non interrupts, Or any other duplicated components ports etc That will trigger a non-reentrant function. You need to...
by medelec35
Tue Jun 24, 2025 8:42 am
Forum: General
Topic: error or bug
Replies: 14
Views: 1604

Re: error or bug

Hello.
Are you using any components or delays within interrupts?
If your Project is different to the one you posted above, then can you post your project on here.
by medelec35
Tue Jun 24, 2025 8:32 am
Forum: General
Topic: Compiler error
Replies: 5
Views: 575

Re: Compiler error

That's great.
Thank you for letting us know.
by medelec35
Mon Jun 23, 2025 8:34 am
Forum: General
Topic: Compiler error
Replies: 5
Views: 575

Re: Compiler error

Hello. Many thanks for reporting this issue. I have fixed the component, so hopefully you will be able to compile ok after following the steps below. Browse to this location using file explorer , it's hidden by default so just paste the link into your address bar. %ProgramData%\MatrixTSL\FlowcodeV10...
by medelec35
Thu Jun 19, 2025 3:12 pm
Forum: Bug Reports
Topic: ESP32 ADC not working
Replies: 22
Views: 1337

Re: ESP32 ADC not working

Hello Seb. You don't need to use WiFi components, its just wifi is enabled by default. THe reason being is more people use ESP32 for WiFi than they do for ADC. Therefore if you use any ADC's that are ADC2 which is most, then they will cause a reset. Have you tried just using ADC that are on inputs o...