Arduino Labview no LINX

Поділитися
Вставка
  • Опубліковано 19 вер 2024

КОМЕНТАРІ • 19

  • @xelas92
    @xelas92 3 роки тому +3

    I was trying to output just the reading of a load cell with HX711 from arduino to labview and ended up trying to use Linx and other tools. Your approach is simple and just works! Thank you very much.

  • @polishhammer1992
    @polishhammer1992 3 роки тому

    This video was extremely helpful.

  • @K_Shawn_Webb
    @K_Shawn_Webb 3 роки тому +2

    Thnx so much. Saved me so much hassle !! are there any benefits to using LINX over this method? also is it possible to send signals to Arduino rather than just receiving?

    • @professorholden3104
      @professorholden3104  3 роки тому +3

      The advantage with LINX is that you don't have to write the arduino side of the software, you use the linx code instead, and it has more options with sending and receiving and other peripherals built-in. Without linx, you can send data to the arduino over the serial port if you write arduino code to read from the port and a labview VI to send the data.

  • @kubas126CZ
    @kubas126CZ 5 місяців тому

    Thank you a lot man! 🙂

  • @AntonioRomoli
    @AntonioRomoli Рік тому

    Thank you very much for your really good video

  • @kennerdskinnerd4794
    @kennerdskinnerd4794 2 роки тому

    Thanks for sharing. Is that the USB port you are using in this example?

    • @kennerdskinnerd4794
      @kennerdskinnerd4794 Рік тому

      OK finally got it working. LabVIEW 6i, Windows 10, Genuine Arduino Uno. This was very helpful once I got past COM port issues (not showing up in NI-Max or VISA control window). Did a few things and not really sure which one fixed the issue :(

  • @zamzamnurmuharram
    @zamzamnurmuharram Рік тому

    Thank you for serial comunication tutorial. Thats great, i have tried serial comunication and i design the block diagram so i can change the comport and baudrate without turning off the simulation, but the data wont show up. Do you have a solutions for my case? thank you.. 👍🏻

  • @kulaniscap
    @kulaniscap 2 роки тому

    Hi Professor. This is helpful.
    Can you do one where you write the data to a file?

  • @mrint471
    @mrint471 2 роки тому

    what if 2 sensor? or more?

    • @meholden
      @meholden 2 роки тому

      If they are on separate arduinos you could duplicate this with separate serial ports. If a single serial stream you would have to parse the serial data into the separate channels.

  • @djtonyxxx5
    @djtonyxxx5 Рік тому

    is not the way a daq is supposed to work. wrong approach.

    • @professorholden3104
      @professorholden3104  Рік тому +1

      Can you be more specific? There are many ways to use labview, feel free to ignore this video if it does not suit you.

    • @djtonyxxx5
      @djtonyxxx5 Рік тому

      @@professorholden3104 is not about labview. you are using arduino like master.so happen that it fill up buffer if not quick. When you use a daq you or ask for data or tell instrument to acquire data and then retrive. In the way you use the system you cannot decide the tick time becouse is decided by ardu cycle. Linx in fact correctly use master slave comunication. None 9f instrument i use work in this way. Sorry for bad english

    • @djtonyxxx5
      @djtonyxxx5 Рік тому

      Just to improve your approach ardu can wait for a specific char. Only one byte to be as quick as possible. No crc or other things. And agter it recive the byte sends out the reading. So simply adding a write one char give a timing to your implementation. That becames a master/slave

    • @professorholden3104
      @professorholden3104  Рік тому +1

      @@djtonyxxx5 That's a good idea. This is a very simple system and sacrifices capability to make it so you can use the most basic arduino print statements that many arduino hobbyists are comfortable with. I agree there are better ways that do not require much more effort however, and your suggestion is a good one to let labview trigger the reading. Thank you for following up!

    • @djtonyxxx5
      @djtonyxxx5 Рік тому +1

      There is also another way using termchar. If you want i can have a TeamViewer or anydesk session and show you. Best regards