Código Visual Studio
Enviado por Eddy_1996 • 5 de Febrero de 2017 • Documentos de Investigación • 837 Palabras (4 Páginas) • 88 Visitas
Código Visual Studio
//LIBRERIAS PROPIAS DEL SISTEMA
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using H_1.Properties;
using System.IO;
//FUNCION PRINCPIPAL
namespace H_1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
serialPort1.PortName = "COM3";//Conexion USB del Arduino
serialPort1.BaudRate = 9600; //Comunicacion Serial Arduino -Pc-Visual Studio
serialPort1.Open();
}
private void button1_Click(object sender, EventArgs e)
{
serialPort1.Write("1");//Manda por el Puerto Serial un '1'
textBox1.Text = "Girando";//Escribe un Mensaje en el Cuadro de Texto 1
textBox2.Text = " ";//Escribe un Mensaje en el Cuadro de Texto 2
textBox3.Text = " ";//Escribe un Mensaje en el Cuadro de Texto 3
pictureBox1.Image = Resources.dere;//Cambia de Imagen
pictureBox3.Image = Resources.motor;//Cambia de Imagen
}
private void button2_Click(object sender, EventArgs e)
{
serialPort1.Write("2");//Manda por el Puerto Serial un '2'
textBox2.Text = " Girando";//Escribe un Mensaje en el Cuadro de Texto 2
textBox1.Text = " ";//Escribe un Mensaje en el Cuadro de Texto 1
textBox3.Text = " ";//Escribe un Mensaje en el Cuadro de Texto 3
pictureBox2.Image = Resources.izqi;//Cambia de Imagen
pictureBox1.Image = Resources.motor;//Cambia de Imagen
pictureBox3.Image = Resources.motor;//Cambia de Imagen
}
private void button3_Click(object sender, EventArgs e)
{
serialPort1.Write("0");//Manda por el Puerto Serial un '0'
textBox3.Text = "Motor apagado";//Escribe un Mensaje en el Cuadro de Texto 3
textBox1.Text = " ";//Escribe un Mensaje en el Cuadro de Texto 1
...