Search found 125 matches
- Tue Aug 13, 2024 1:23 pm
- Forum: General
- Topic: CONVERT SENSORS TO WIRELESS
- Replies: 2
- Views: 3000
CONVERT SENSORS TO WIRELESS
Hello to all! I would like to convert some sensors to wireless , to extent the length of connections with no use of wires. Normal sensors (one with Analog output and one with I2C output) are connected to a PIC and works well. I've 2 solutions to convert and transfer sensors data. 1. NRF24L01 RF tran...
- Wed Aug 07, 2024 11:00 am
- Forum: General
- Topic: DATA CONVERSIONS WITH PIC 12F1822
- Replies: 7
- Views: 6215
Re: DATA CONVERSIONS WITH PIC 12F1822
Hi
thank you and good holidays.
I'll try to make some demos for test.
Regards
Basil
thank you and good holidays.
I'll try to make some demos for test.
Regards
Basil
- Tue Aug 06, 2024 11:08 pm
- Forum: General
- Topic: DATA CONVERSIONS WITH PIC 12F1822
- Replies: 7
- Views: 6215
Re: DATA CONVERSIONS WITH PIC 12F1822
Hi thanks for info...as I saw in data sheet of PIC12F1822, DAC out is only pin A0 , so I'll make a modification in wiring. About Analog - UART bridge and reverse , I made 2 demo in FC for test..I would like to have your opinion . About I2C - UART bridge, and UART - I2C bridge , for now I haven't fou...
- Tue Aug 06, 2024 10:07 am
- Forum: General
- Topic: DATA CONVERSIONS WITH PIC 12F1822
- Replies: 7
- Views: 6215
Re: DATA CONVERSIONS WITH PIC 12F1822
Hi Many thanks for your answer. I would like to make some tests to transfer data using 2 PIC12F1822 via UART . I have very limited space ,so I select that chip in SOIC-8 . There are 2 cases.. 1. First PIC12F1822 (sender)... An Analog value as input to A2 , output at A4 (TX), A5(RX) ----UART serial l...
- Mon Aug 05, 2024 1:36 pm
- Forum: General
- Topic: DATA CONVERSIONS WITH PIC 12F1822
- Replies: 7
- Views: 6215
DATA CONVERSIONS WITH PIC 12F1822
Hello to all ! I would like to make some data conversions using PIC12F1822 as follows.. 1. Analog value to digital using A2(AN2) as A/D input , and A4,A5 as output (RX,TX) to send data to PC ( ANALOG TO UART) , and reverse ( RX-TX to Analog ). 2. I2C to UART, using A1(SCK) , A2(SDA) as I2C data inpu...
- Wed Mar 20, 2024 3:54 pm
- Forum: Feature Requests
- Topic: Suggestions for new microcontroller support
- Replies: 87
- Views: 481191
Re: Suggestions for new microcontroller support
Hello, Flowcode10 is a great tool , so we would like to help us in an App Developer for Android... Also a component for ESP32-cam module will be very useful , to help us make a video recorder that can store video files in SD card, that may controlled by an Android App..If there is any component ,or ...
- Mon Mar 18, 2024 11:13 pm
- Forum: General
- Topic: COMPONENT ADC INPUT (POTENTIOMETER) NOT WORK-FC10
- Replies: 1
- Views: 2158
COMPONENT ADC INPUT (POTENTIOMETER) NOT WORK-FC10
Hello,
In input components / ADC Input / Potentiometer and Pot Slider , I can't set analog input in Connections at Properties ..I get "unconnected" that not change...so I can't connect input pin of mcu (PIC16F628A) . Any idea on how to solve that? Thanks.
Basil
In input components / ADC Input / Potentiometer and Pot Slider , I can't set analog input in Connections at Properties ..I get "unconnected" that not change...so I can't connect input pin of mcu (PIC16F628A) . Any idea on how to solve that? Thanks.
Basil
- Sun Mar 03, 2024 6:20 pm
- Forum: General
- Topic: PIC18F25K22 UART ERROR
- Replies: 226
- Views: 257822
Re: PIC18F25K22 UART ERROR
Hi Floating point calculations can be quite resource heavy on an 8-bit. The 25K22 has an internal oscillator that runs at 16MHz and you can also use the 4 x PLL to up the speed to 64MHz, thereby improving speed by a factor of four. The peripherals will still take time to obtain data, but at least c...
- Sat Mar 02, 2024 4:38 pm
- Forum: General
- Topic: PIC18F25K22 UART ERROR
- Replies: 226
- Views: 257822
Re: PIC18F25K22 UART ERROR
Hi Further analysis of last 2 parts of macro "Get_Data" shows the following.. 3 calculations x,y,z to string....period...11.2ms 2 calculations hr,ox to string....period...6.8ms after some corrections for that part , total period is 18ms 11 calculations Data = Data + xx ....period...3.2ms 2...
- Fri Mar 01, 2024 11:24 pm
- Forum: General
- Topic: PIC18F25K22 UART ERROR
- Replies: 226
- Views: 257822
Re: PIC18F25K22 UART ERROR
Hi I was made some changes to properties of sensors so the transmitter sends data with 2 delays at 1ms. But iteration period at send loop (MAIN) was only about 35ms, so f=28/sec.. My goal is near to 80/sec, so total period of 2 macros must be about 12ms.. Using some pins, I set H/L to parts of macro...