Can we interface qt gui with PIC (dsPIC33EP32MC202) micro-controllers?
-
This post is deleted!
-
This post is deleted!
Depending on how you interface both sides, yes that is possible.
-
@aha_1980 I have used modbus for communication between PIC and some peripherals. Can I use UART for communication between Qt gui and PIC?
-
@aha_1980 I have used modbus for communication between PIC and some peripherals. Can I use UART for communication between Qt gui and PIC?
Yes that is possible. Qt has QSerialPort as cross platform solution.
I've used it a lot to connect to diverse microcontrollers already.
-
@aha_1980 I have used modbus for communication between PIC and some peripherals. Can I use UART for communication between Qt gui and PIC?
@Mohit-Tripathi
Take a look at these linksQtSerialPort
Examples for QtSerialPortThis should get you started.
-
Yes that is possible. Qt has QSerialPort as cross platform solution.
I've used it a lot to connect to diverse microcontrollers already.
@aha_1980 can you help me with the some examples of Modbus protocol in Qt?
I want to use Modbus protocol in between PIC microcontroller and peripherals and also UART in between Qt gui and PIC simaltaneously. -
@aha_1980 can you help me with the some examples of Modbus protocol in Qt?
I want to use Modbus protocol in between PIC microcontroller and peripherals and also UART in between Qt gui and PIC simaltaneously.Hi @Mohit-Tripathi, If your PIC is the Modbus slave, then you can have a look at the Qt Modbus Master Example.
-
@aha_1980 @J-Hilk @I know now some basic concept about Modbus.
Now, I want to write/read the data through Moddbus like "03020001000A". How can I do that? Is there any tutorial or documentation is given because I need some basic example of this?
I can read/write the data through UART. -
@aha_1980 @J-Hilk @I know now some basic concept about Modbus.
Now, I want to write/read the data through Moddbus like "03020001000A". How can I do that? Is there any tutorial or documentation is given because I need some basic example of this?
I can read/write the data through UART.@Mohit-Tripathi Did you check the example @aha_1980 gave you?