GUI interface with dsPIC
조회 수: 1 (최근 30일)
이전 댓글 표시
Mohammad Abu Bakar Siddique
2015년 7월 30일
댓글: Mohammad Abu Bakar Siddique
2015년 9월 30일
i try to control dsPIC micontroller through Matlab GUI(using IO packages). First, i try to light on the LED by click on the push button i create, could you give me some proper Soln for that microcontroller
댓글 수: 0
채택된 답변
Ilham Hardy
2015년 7월 30일
Hi Abu,
This can't be coincidence, I just replied to your other thread. :)
However I am afraid I could not be more of assistance as I do not have required software/toolbox on my current PC.
댓글 수: 4
Walter Roberson
2015년 9월 30일
You need to program the Callback for the edit box to change the String property of the other box. Focus has nothing to do with it.
For example,
function editbox1_callback(hObject, event, handles)
curstring = get(hObject, 'String');
backwards = fliplr(curstring);
set(handles.editbox2, 'String', backwards);
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!