-
Posts
466 -
Joined
-
Last visited
-
Days Won
20
Content Type
Profiles
Forums
Downloads
Gallery
Everything posted by viSci
-
Wondering what the implications are for the LV community...
-
Protobuf is a widely used Google serialization standard. I have an instrument that only communicates via HDLC encoded ProtoBuf messages. Protobuf tools are available for most languages but not LV as far as I know. So was wondering if any crafty folks out there have come up with a way to talk ProtoBuf in LV. My understanding is that this would require building a Protobuf IDL (Interface Definition Language) compiler that would then guide a LV based encode/decode process.
-
Filipe - It appears that the compiler converts LV to Arduino sketches, is that correct? Will the compilers support such things as subvi's or structures?
-
What! That is fantastic! Filipe you are the man... (Do you need beta testers???)
-
Just poking this old thread to see how things are going with the MLua project...
-
Yes you are correct. A 32 bit windows app should be placed in the c:\program file (x86). It appears that the LabVIEW installer build will let you specify an arbitrary absolute installation path but if you name it c:\program files it will silently install in the x86 directory. This is one of those cases where the customer is not always right and I will attempt to explain again that their request to put a 32 bit application in the 64 bit directory does not make sense, is misleading and in fact maybe impossible to do in a standard LabVIEW installation build.
-
Normally, my project installers all default to the c:\program files (x86) directory since I have the 32 bit version of LabVIEW. I have a customer that would like their installer to install to c:\program files. I have tried to add a c:\program files absolute path to the list of destination directories and have also marked it as the default directory. No matter the installer still uses the original (x86) default directory. Does anyone know of a way to fix this?
-
Doesn't IMAQ have ring buffers built in?
-
I have a customer in the clinical assay processing business that would like to setup a LIMS system to automate and manage their workflow and interface to various off the shelf and custom analytical Instruments and robotics. In my search of various LIMS on the market I noticed that at one time there was a LIMS written in LabVIEW by a company called Cardiac which is no longer in business. I was wondering if anyone knows anything about this or similar products.
-
Convert Range.vi - for rescaling a value between two ranges
viSci replied to Sparkette's topic in Code In-Development
Your post prompted me to finally dig around for this one and guess what? C:\Program Files (x86)\National Instruments\LabVIEW 2013\vi.lib\Utility\Range And Ratio.llb\Scale Value to New Range.vi Can you imagine how many folks (myself included) have created their own version of this?- 1 reply
-
- 1
-
-
As predicted, I was doing something stupid. What looked like a fired user event was really something entirely different and explainable. Thanks anyway for your sobering "this sinmply cannot be true" reality check
-
I have two identical vi's (app1 and app2) that both create a user event and register that event in a event structure. I have confirmed that each vi generates a unique User Event and Registration Refnum. I am finding that a triggered user event in app1 seems to also be received in app2. How is this possible? I am pretty certain that I must be doing something completely stupid but right now I cannot see it. Any thoughts would be very much appreciated. BTW this is LV 13.0f2
-
Yeah same here, blocked...
- 60 replies
-
- ni week 2014
- ni week
-
(and 2 more)
Tagged with:
-
Did you run devcon.exe with the 'restart' switch? http://msdn.microsoft.com/en-us/library/windows/hardware/ff544807(v=vs.85).aspx
-
You can use a window utility called devcon.exe to restart a USB port. That might force LabVIEW to refresh its VISA driver. You can programmatically call devcon with the system exec.vi
-
Ok I am going to update to vipm 2014... Rats!...vipm 2014 update is freezing up at the 'Checking for a newer version' dialog Maybe I need to manually uninstall vipm 2013 first?
-
-
Can Event Structures Handle Big-Data Display Updates?
viSci replied to AlexA's topic in User Interface
0MG, nanomsg... Now that would make an interesting VIShots episode. -
Here is a demo of cluster to SQLite. It uses the 'other' SQLite toolkit SQLite Cluster Demo.zip
-
salesforce.com automation
viSci replied to Phillip Brooks's topic in Remote Control, Monitoring and the Internet
As an aside, I think the Import Web Service Wizard could be an amazing tool to help facilitate using LabVIEW to interoperate with the rest of the modern web based world. For some reason there are very few (none?) use case examples to be found. Maybe because its so hidden in the tools menu nobody knows about it or like me forgot how to find it again. -
salesforce.com automation
viSci replied to Phillip Brooks's topic in Remote Control, Monitoring and the Internet
This might help with the login part... https://decibel.ni.com/content/groups/interactive-internet-interface-oauth-toolkit-for-labview or maybe you can get the salesforce WSDL and use the LabVIEW Import Web Service Wizard http://www.salesforce.com/us/developer/docs/api/Content/sforce_api_quickstart_intro.htm#choose_wsdl -
I had this brainy idea the other day to help a customer create an event scheduler by using google calendar to manage the events. I could setup the events to send notifications (email or SMS?) to my app which would then decode a command embedded in the event description field. The other possibility would be use the google calendar web services to poll for upcoming events. Notifiction by email at first sounds good but then I still have to essentially poll an email server. Anybody ever tried to do something like this before?
-
Can you use the strings[] property of the combo box to change the list to reflect the items still available to select?