el 08-22-2013 11:54 PM
Hola a todos, necesito ayuda, estoy comenzando con labview y me gustaria saber si se puede escribir y cargar a travez de labview un programa creado en lenguaje codigo arduino.
el 08-23-2013 10:56 AM
Hola,
No puedes cargar un código de LabVIEW a Arduino, hasta donde sé no existe dicho compilador, aunque alguien pudiese desarrollarlo.
Lo que si puedes es comunicar un código en LabVIEW con tu Arduino y según esa comunicación definir que haga el Arduino.
Una forma es usar el toolkit gratuito LabVIEW Interface for Arduino (LIFA) el cual te permite programar en LabVIEW todas las acciones que va a realizar el arduino, y para lo cual necesitas grabar en el Arduino un archivo llamado LIFA_BASE.ino. La limitación que tiene esto es que necesitas tener el pc corriendo para que vaya ejecutando las funciones y esa comunicación entre la PC y el Arduino tiene limitaciones en la velocidad de ejecución. Sin embargo es una excelente forma de usar el arduino como DAQ desde LabVIEW.
Aquí estan los enlaces relacionados:
LabVIEW Interface for Arduino Setup Procedure
LabVIEW Interface for Arduino FAQ
Saludos,
el 08-23-2013 11:54 AM
Se podría llamar a través de la línea de comandos a avrdude para subir el fichero hex generado por el compilador de Arduino.
el 08-23-2013 02:28 PM
el 08-23-2013 02:29 PM
el 11-14-2013 07:12 PM
you can download labview code in arduino, it is better to choose another microcontroller such as Cortex M3 LM3S8962, is much faster than the Arduino and includes additional hardware ethernet ports, CAN, keyboard among other features, leave a few links so you can check this option
http://sine.ni.com/nips/cds/view/p/lang/en/nid/209852
https://decibel.ni.com/content/docs/DOC-22918
el 11-14-2013 07:13 PM
In this illustrative example, we will create a project in Labview that will open a connection to the LM3S8962 evaluation board, it will see the status of the push buttons on the spoils, likewise activate the horn and finally show numeric characters on your screen LCD. The front panel is connected to the evaluation board is shown in the following figure:
el 12-31-2014 01:21 PM
Me gustaria saber si con el lifa base dentro del programa del ARDUINO puedo hacer esto:
Include <SPI.h>
Include <Servo.h>
Include "LäVIEWInterface.h"
int pol 2 igual a 6;
int val = 0;
int led 11 igual a 13;
Setup
{
pinMode pol, INPUT;
pinMode led11,OUTPUT;
syncLV;
}
loop
{
val = digitalRead *pol*
if (val ==1 )
{
digitalWrite led 11, HIGH;
}
}
Hacer funcionar la parte de visualizacion del labView i tambien poner codigo dentro del LIFA_Base para encender un led a través de codigo bàsico d'arduino .
el 10-16-2019 03:19 PM
si se puede enviar de labVIEW a arduino pero no se si se hace de arduino a labVIEW