Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

pc interface microcontroller using vb

Status
Not open for further replies.

daksh

Newbie level 3
Joined
Sep 5, 2007
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,301
pc interface with vbasic

hi,
pls can u help with interface of PC with µP
i need for my be project
i am using VISUAL BASIC6.0 and microcontoller89C51
 

interfacing microcontroller with vb

Make a project in VB with MSComm control, set baud rate, parity and handshaking matching your microcontroller. To send data, write to port buffer i.e. MSComm1.Output = "Hello World". In your mcu read the data (either polling or interrupt driven) from UART register.
 

smainj and mcu french

watch this
**broken link removed** :D
 

mscomm control the micro controller

thank u for the procedure but pls let me know
how to look out for the steps to interface to interface pc microcontoller using vb
there block diagrams hardware specifications and voltage level
do i require MAX 232 forthe project
 

microcontroller in vb

Private Sub Form_Load()
MSComm1.CommPort = 1
MSComm1.Settings = "9600,N,8,1"
MSComm1.InputLen = 1
MSComm1.PortOpen = True
End Sub
Private Sub Command1_Click()
MSComm1.Output = Text2.Text
End Sub
Private Sub MSComm1_OnComm()
If (MSComm1.CommEvent = comEvReceive) Then
Text1.Text = Text1.Text + (MSComm1.Input)
End If
End Sub
Private Sub Form_Unload(Cancel As Integer)
If MSComm1.PortOpen = True Then
MSComm1.PortOpen = False
End If
End Sub
 

    daksh

    Points: 2
    Helpful Answer Positive Rating
pc interface vb6

how to get mscom icon in the visual basic enviroment
 

how to interface pc to microcontroller using vb

:|:|
 

There is a good explaination of project for pc interface microcontroller using vb.

**broken link removed**

Thank You....

vmax
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top