How to connect Matlab with PIC?

조회 수: 11 (최근 30일)
QY Goh
QY Goh 2011년 9월 25일
Hello all my friend,
i am now in progress of my Project about the robotic hand.The idea is like that,the Matlab is use for detect the movement and position of human hand.After that it will send the data to PIC for adjust the position of robotic hand as same as human and. So,I wish to know how to communicate between Matlab and PIC16f877a? Please give me some idea.
Best Regards QY Goh
  댓글 수: 5
Walter Roberson
Walter Roberson 2011년 11월 30일
You can use USB serial ports, provided that you connect the device before you start MATLAB, and provided that you are okay with the latency being 40 milliseconds per USB packet (unless the packet is full, somewhere around 1022 bytes.)
QY Goh
QY Goh 2012년 5월 19일
Hello walter, i use video cam to take the input of the user's finger color.

댓글을 달려면 로그인하십시오.

채택된 답변

Gergely Öllös
Gergely Öllös 2011년 11월 29일
Hi,
There are so many possibilities. One of them –that I would prefer – is to use the PIC’s USART/SCI. Just buy a serial/usb converter cable (it’s almost for free) and hook up with the PICs USART (there is no need for any additional HW). Then plug the USB side of the cable to the PC and it will show up as a virtual serial port. Then just use MATLAB’s Serial Port Interface to connect to it, as in this example:
s = serial('COM1');
set(s,'BaudRate',4800);
fopen(s);
fprintf(s,'something to send')
out = fscanf(s);
fclose(s); delete(s);
On the PIC’s side The Universal Synchronous Asynchronous Receiver Transmitter (USART) module is a serial I/O module. It can be configured as a full duplex asynchronous system that can communicate with peripheral devices such as personal computers. Configure the USART in full duplex mode, and with the same signaling speed as in matlab (4800 in our example). To configure the USART set these two registers:
TXSTA: TRANSMIT STATUS AND CONTROL REGISTER (ADDRESS 98h)
RCSTA: RECEIVE STATUS AND CONTROL REGISTER (ADDRESS 18h)
For details consult the PIC’s user manual.
I hope this helps, Gergo
  댓글 수: 3
Walter Roberson
Walter Roberson 2011년 11월 30일
QY Goh, you did not happen to mention any information about what kind of instrument you are using to detect the movement and position of a human hand. Are you using a video camera?
Gergely Öllös
Gergely Öllös 2011년 11월 30일
QY Goh, It depends on the application. What is the model of the hand?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by