Search found 2094 matches
- Thu Mar 05, 2026 4:21 pm
- Forum: General
- Topic: PLEASE can you help steven Licence problem witch one
- Replies: 1
- Views: 63
Re: PLEASE can you help steven Licence problem witch one
Hello. So long as you are only using Flowcode for your hobby then ' Not for commercial use' can be ignored. With regards to 'You do not have a valid licence to perform this action', you have left some important information out. What version of Flowcode are you using & can you attach your project...
- Sun Mar 01, 2026 10:54 pm
- Forum: Projects - Embedded
- Topic: flickering STM32 touch screen
- Replies: 1
- Views: 123
Re: flickering STM32 touch screen
Hello Rather than using ClearDispaly and PrintNumber, what about just use the Print function that prints strings. You can use use a calculation Icon with: NumberString = ToString$(number) NumberString = NumberString + " " Print NumberString The + " " clears unwanted digits.
- Sun Mar 01, 2026 10:41 pm
- Forum: Bug Reports
- Topic: PIC16F1788/9 ADC Resolution
- Replies: 8
- Views: 703
Re: PIC16F1788/9 ADC Resolution
That's great.
I'm glad its been resolved for you
Thanks for update.
I'm glad its been resolved for you
Thanks for update.
- Thu Feb 26, 2026 7:07 pm
- Forum: General
- Topic: Compile problem with FC11
- Replies: 38
- Views: 1309
Re: Compile problem with FC11
I find this as odd.
Your project compiles for me without any alterations.
However your txt.msg file suggests a pin is not connected.
As Leigh as suggested have you done a full component database update?
Your project compiles for me without any alterations.
However your txt.msg file suggests a pin is not connected.
As Leigh as suggested have you done a full component database update?
- Sat Feb 21, 2026 11:51 pm
- Forum: General
- Topic: UART ports
- Replies: 6
- Views: 468
Re: UART ports
Hi Iain
I agree, the parametric search tool is not great for UARTS.
Just as reminder for Flowcode targets which allow filtering there is my spreadsheet found here.
I agree, the parametric search tool is not great for UARTS.
Just as reminder for Flowcode targets which allow filtering there is my spreadsheet found here.
- Sat Feb 21, 2026 5:43 pm
- Forum: General
- Topic: UART ports
- Replies: 6
- Views: 468
Re: UART ports
Hello. If you select Embedded > Target Selector, that will display all the target devices Flowcode supports. You can then Select PIC 8bit, then change the Show 25 devices to 100. Finally click the Arrow to the right of UART, so it shows pointing down. You will then see the total supported UARTS: Tot...
- Fri Feb 20, 2026 12:25 pm
- Forum: Bug Reports
- Topic: PIC16F1788/9 ADC Resolution
- Replies: 8
- Views: 703
Re: PIC16F1788/9 ADC Resolution
Hello. No you can't change within properties from 12 to 10bits and vice versa. What you can do is read as 12 bit and convert to 10bit using calculation or using the Map component Component Libraries > Math If reading is a bit unstable, you can even use software filters that are also available within...
- Tue Feb 10, 2026 3:45 pm
- Forum: General
- Topic: 16f18877 internal Zero Cross Detector
- Replies: 24
- Views: 3190
Re: 16f18877 internal Zero Cross Detector
What I did to detect ZCD on a microcontroller that did not have ZCD was to use a resistor to prevent too much or reverse current on a pin. detect for 0v (positive half cycle), then timed 10 ms for the zero crossing after the negative half cycle. That made the AC motor i controlled via MOSFET and a b...
Re: BME280
BME280 Working on embedded hardware as expected. Temp = 22.780000, Humid = 47.277343, Pressure = 987.909973 Temp = 22.780000, Humid = 47.289062, Pressure = 987.929992 Temp = 22.790000, Humid = 47.299804, Pressure = 987.900024 Temp = 22.770000, Humid = 47.280273, Pressure = 987.890014 Temp = 22.78000...
Re: BME280
Hello. My Advice would be not to test with a third party simulation before posting on the forums. It's always wise to test on embedded hardware first. I have a 18F14K22 I can test BME280 on. Last time I tested BME280 on ESP32 it worked as expected. I will carry out some tests and let you know how i ...