Visual Studio
cashr23523
Posts: 1
I just purchased the BASIC stamp discovery kit with USB cable. Any resources or articles on simple projects·on how to use·Visual Studio in C# or VB to communicate with the BASIC Stamp?
Thanks
Thanks
Comments
Here is an an example of an open statement.
··· private void openConnectionButton_Click(object sender, EventArgs e)
··· {· if (serialPort1.IsOpen) return;
···· ··try
·········· { serialPort1.Open(); }
·······catch (Exception ex1)
········· ·{ BTtxt.Text = ex1.ToString().Substring(0, 12); }
····}
Most of the above code is generated automatically for you by Visual Studio.
Jeff T.
Scroll down to near middle (8 posts) and I have attached a guide for VB.net