<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Tasks? in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1150108#M505995</link>
    <description>Ok so I have some of it figured out and have managed to now instead of starting at the back 8 I am lighting up 0-7 (see attached code), I get that the first one is 255-2^0, and so on but when i get to the 8th button, it becomes 255-256 which is obviously does not work for turning something on or off. Any thoughts?</description>
    <pubDate>Thu, 17 Jun 2010 13:34:12 GMT</pubDate>
    <dc:creator>superomario</dc:creator>
    <dc:date>2010-06-17T13:34:12Z</dc:date>
    <item>
      <title>How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147559#M504975</link>
      <description>In the attached program, there are 6 buttons in a cluster and 1 individual button. These buttons control a bunch of different relays to control power to different components of a single device. Right now the program works in that I can control the 6 buttons, the LED turns on in the board and the power is being transmitted. What I do not understand is how it is doing this.&amp;nbsp; I ran the program with the highlight execution on and at the start of the read from array component, if say I pressed button 6 and hit ok, it reads #6, where did these get defined and labled? and if i wanted to add another button/relay how do i do this? If someone could explain step by step how this is grouping the relays on the board into an array and then controling them I would really appreciate it. Thanks.</description>
      <pubDate>Mon, 14 Jun 2010 13:58:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147559#M504975</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-14T13:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147592#M504984</link>
      <description>So the "cluster to array" always reads a #6 regardless of which button I press. This is really confusing me.</description>
      <pubDate>Mon, 14 Jun 2010 14:23:51 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147592#M504984</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-14T14:23:51Z</dc:date>
    </item>
    <item>
      <title>Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147593#M504985</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;So it is easy. The while loop runs :&lt;/P&gt;&lt;P&gt;1rst step, there is an exclusive Or, which make that 2 boolean controls cannot be ON at the same time. &lt;/P&gt;&lt;P&gt;The second step is to write a port.&amp;nbsp; The port is the collection of channels. 8 (depends of your device) channels make a port.&lt;/P&gt;&lt;P&gt;&amp;nbsp;You can write on a port using several methods : writing an array 1D of booleans (the easiest to understand), or you can write a value to the port. The value is exactly the same that writing a 1D array, because the value is the translation of the array in a word. for exemple, if you write (True,True,False, False) on your port, you can write 12d, or 0C, the result will be the same...&lt;/P&gt;&lt;P&gt;Any other question ? &lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2010 14:24:13 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147593#M504985</guid>
      <dc:creator>ramses64</dc:creator>
      <dc:date>2010-06-14T14:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147604#M504989</link>
      <description>Yes one more, and not be rude or unappreciative but....huh? So let's say I added in another button, the board has spots for up to 16 relays, how do I assign it a value in the array and figure out which final value is corresponding to the board? If i press button 4, it calculates a 247 and the button turns on, how do I know where to assign these numbers when I want to add in newe buttons?&amp;nbsp;</description>
      <pubDate>Mon, 14 Jun 2010 14:31:07 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147604#M504989</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-14T14:31:07Z</dc:date>
    </item>
    <item>
      <title>Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147615#M504996</link>
      <description>&lt;P&gt;When you press 4, it calculates 247d, so it is 11100011.&lt;/P&gt;&lt;P&gt;I think that when you measure the voltage on the ports,&amp;nbsp; you will recognize these values. Isn't it ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2010 14:38:15 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147615#M504996</guid>
      <dc:creator>ramses64</dc:creator>
      <dc:date>2010-06-14T14:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147619#M504998</link>
      <description>What do you mean measure the voltage? How am I supposed to do this? short of stripping&amp;nbsp; a wire or two on the board for a probe I dont see how I can do this.....</description>
      <pubDate>Mon, 14 Jun 2010 14:43:21 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147619#M504998</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-14T14:43:21Z</dc:date>
    </item>
    <item>
      <title>Re : Re: Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147623#M505000</link>
      <description>What is your device ?</description>
      <pubDate>Mon, 14 Jun 2010 14:45:56 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147623#M505000</guid>
      <dc:creator>ramses64</dc:creator>
      <dc:date>2010-06-14T14:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Re: Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147626#M505002</link>
      <description>&lt;P&gt;This is the device:&lt;/P&gt;&lt;P&gt;&lt;A href="http://parts.digikey.com/1/parts/760645-mounting-brd-16-pos-w-50-conn-70rck16-hl.html" target="_blank"&gt;http://parts.digikey.com/1/parts/760645-mounting-brd-16-pos-w-50-conn-70rck16-hl.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ok I can attach a probe somewhere if I take it out of the housing it is in, but what will that tell me?&amp;nbsp; &lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2010 14:49:12 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147626#M505002</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-14T14:49:12Z</dc:date>
    </item>
    <item>
      <title>Re : Re: Re : Re: Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147632#M505006</link>
      <description>&lt;P&gt;It is a TTL signal : if the line is on, you should measure a 5V signal, and if the line is off, you should measure a 0V signal.&lt;/P&gt;&lt;P&gt;Betweek the GND and each line, you should recognize the 11110111, which is the translation of your 247d. I think that it reverse the lines of the port, so you should measure only one port at ON, which is the 4th or the 5th, depending on how you're reading.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2010 14:54:08 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147632#M505006</guid>
      <dc:creator>ramses64</dc:creator>
      <dc:date>2010-06-14T14:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147637#M505009</link>
      <description>&lt;P&gt;The #6 your seeing is the number of elements in the array not a value for the array.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now for some deeper explainations.&amp;nbsp;&amp;nbsp; From the code it appears that exactly 1 of 6 valves may be used and an additional valve may be in one of two possible states.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the program is run the cluster of buttons is initiallized to all False.&amp;nbsp; and we enter the outer while loop where a sequence structure starts.&amp;nbsp; In the first frame of the sequence we initiallize a shift register to hold the current value of "Buttons." and this loop runs unthrottled (Add a wait for next ms multiple to this loop to prevent using 100% of the CPU!)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For each iteration the buttons are read and if a change has occured to any value buttons that were previously True are reset to False to prevent opening more than one valve.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the user presses OK or stop- the current "Buttons" value is passed to the next frame.&amp;nbsp; This frame convertsthe 7 boolean values to a integer where each valve is controlled by a seperate bit of the integer (Isolation is bit 6 and bits 0-5 each control a mixing valve)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I'd strongly recommend reworking the DAQmx calls- it is pointless to initiallize the task each time you want to use it- Create the task in the initialzation case and wait until the user exits to destroy the task.&amp;nbsp; And well a sequence structures are frowned on- (there are better ways to do this)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As far as adding a relay- right now the relays are associated to the hardware by their index position in the cluster (element 1 = bit 0 etc....) to add a new valve you would need to decide what bit you would use to drive it and code in that bits' value to write a 0 in that bit.&amp;nbsp; (hint the 40 constant is realy 0x40 right-click&amp;gt;visable items&amp;gt;show radix )&lt;IMG src="https://ip1.i.lithium.com/d41f1082e3049ccf7b65adc566e78e0ea19f8a16/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f313636303269384244354445394146454539423138312f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="111.PNG" title="111.PNG" align="CENTER" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if you need further elaboration &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2010 14:56:08 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147637#M505009</guid>
      <dc:creator>JÞB</dc:creator>
      <dc:date>2010-06-14T14:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Re: Re : Re: Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147639#M505010</link>
      <description>How do I recognize this 11110111? and in terms of the program if everything is the same voltage how does the VI know which port is which? If I add one more button to all the clusters it puts out a negative value and then nothing works. I guess I am still asking/confused on how this program works</description>
      <pubDate>Mon, 14 Jun 2010 14:57:06 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147639#M505010</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-14T14:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Re: Re : Re: Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147643#M505012</link>
      <description>&lt;P&gt;&amp;lt;i&amp;gt;&lt;SPAN class="noindex"&gt;to add a new valve you would need to decide what
bit you would use to drive it and code in that bits' value to write a 0
in that bit. &amp;lt;/i&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like more elaboration on this please. I do not know how to code in any of this information let alone where.&amp;nbsp; &lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2010 14:58:58 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147643#M505012</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-14T14:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Re: Re : Re: Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147681#M505026</link>
      <description>&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/2b00302f3b9c45184f1b976b4e641449700257e0/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f313636303869393331333241373232373831454237382f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="1snip.png" title="1snip.png" align="CENTER" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ok- I think this explains a bit(or several)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And revised to add new valve&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/4e731a2cf4378aed9bcedf44691270ea2698c457/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f313636303969424130323545423833384639303238322f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="2snip.png" title="2snip.png" align="CENTER" /&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2010 15:31:37 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147681#M505026</guid>
      <dc:creator>JÞB</dc:creator>
      <dc:date>2010-06-14T15:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Re: Re : Re: Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147688#M505028</link>
      <description>Thanks Jeff that explains a lot, I have one more question though. The board was set up with this program to start at slot 8, so slot 8 is the "0" in the array. and adding a new button just pushes everything up 1 so isolation valve is now 15 (the last slot), how can I rewrite everything so that it starts at slot 0? and 0 is is 0 in the array?</description>
      <pubDate>Mon, 14 Jun 2010 15:38:16 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147688#M505028</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-14T15:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Re: Re : Re: Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147745#M505056</link>
      <description>&lt;P&gt;The task!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The task defines the physical channels that are associated with each bit. so if you create a task that has Channels(&lt;/P&gt;&lt;P&gt;Dev1Port0B0 &lt;/P&gt;&lt;P&gt;Dev1Port0B1&amp;nbsp; &lt;/P&gt;&lt;P&gt;Dev1Port0B2&amp;nbsp; &lt;/P&gt;&lt;P&gt;Dev1Port0B3&amp;nbsp; &lt;/P&gt;&lt;P&gt;Dev1Port0B4&amp;nbsp; &lt;/P&gt;&lt;P&gt;Dev1Port0B5&amp;nbsp; &lt;/P&gt;&lt;P&gt;Dev1Port0B&lt;STRONG&gt;&lt;FONT size="4"&gt;7&lt;/FONT&gt;&amp;nbsp;&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;Dev1Port0B&lt;STRONG&gt;&lt;FONT size="4"&gt;6)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;would take a 0b10101111 and turn on bits 5 and 7 &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2010 16:09:40 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147745#M505056</guid>
      <dc:creator>JÞB</dc:creator>
      <dc:date>2010-06-14T16:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Re : Re: Re : Re: Re : Re: Re : How does this program group and cluster these button values into an array?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147822#M505088</link>
      <description>This is going to sound stupid but, where are you referring to? The task?</description>
      <pubDate>Mon, 14 Jun 2010 17:29:37 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147822#M505088</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-14T17:29:37Z</dc:date>
    </item>
    <item>
      <title>Tasks?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147959#M505148</link>
      <description>&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/085e1c79aad4b15c7d1516e3278f0914da2ac82a/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f313636333569323844453543344443393935343930442f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="3Snip.png" title="3Snip.png" align="CENTER" /&gt;&lt;/P&gt;&lt;P&gt;When you create a DAQmx Task there are many properties that need to be configured.&amp;nbsp; including what physical channels you use.&amp;nbsp; I' modified the create channel vi you have to expose the channel control.&amp;nbsp; It would be a good idea to read the DAQmx help file at:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/be743b433d0fe68973386a30c8bda30246b5cd48/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f313636333669394643344344463436394438303741442f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="123.PNG" title="123.PNG" align="CENTER" /&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2010 20:35:24 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1147959#M505148</guid>
      <dc:creator>JÞB</dc:creator>
      <dc:date>2010-06-14T20:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Tasks?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1148480#M505335</link>
      <description>&lt;P&gt;Can you tell me what I am looking for in the help? I'm not even sure where to begin with this honestly, most of the stuff you have been saying is kinda going right over my head. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Right now I think the program was set up for 8 lines which is why I can only make 8 slots on the card work. But I still dont get where it is defined for it to start at the 8th slot on the card and not the first. so if I change it to 16 slots, it looks for a spot after the last on the card and then errors since there isnt one.&amp;nbsp; &lt;/P&gt;</description>
      <pubDate>Tue, 15 Jun 2010 15:04:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1148480#M505335</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-15T15:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Tasks?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1148541#M505359</link>
      <description>&lt;P&gt;I'd recommend starting with the heading "NI-DAQmx Key Concepts" and read through the entire section!!!&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The same section is duplicated in the LabVIEW help file under the heading "Taking Measurements."&amp;nbsp; Seriously, you are going to need to understand DAQ key concepts- and the help file reads better than my typing of the same info.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;superomario wrote: &lt;BR /&gt;&lt;P&gt;Can you tell me what I am looking for in the help? I'm not even sure where to begin with this honestly, most of the stuff you have been saying is kinda going right over my head. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Right now I think the program was set up for 8 lines which is why I can only make 8 slots on the card work. But I still dont get where it is defined for it to start at the 8th slot on the card and not the first. so if I change it to 16 slots, it looks for a spot after the last on the card and then errors since there isnt one.&amp;nbsp; &lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt; Slots? what are slots? "Slots" do not translate into DAQmx entities, attributes, or properties. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="message-edit-history"&gt;&lt;SPAN class="edit-author"&gt;Message Edited by Jeff Bohrer on &lt;/SPAN&gt;&lt;SPAN class="local-date"&gt; 06-15-2010&lt;/SPAN&gt;&lt;SPAN class="local-time"&gt; 10:49 AM&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 15 Jun 2010 15:49:27 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1148541#M505359</guid>
      <dc:creator>JÞB</dc:creator>
      <dc:date>2010-06-15T15:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Tasks?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1149328#M505668</link>
      <description>So I read over the help a lot last night, with much of it going over my head, but I have been using the DAQ assistant to try and make my own Digital out task/connection. This has produced some progress in that I have gotten the first 8 lights to all light up when i hit test. but I am looking at their Hex values and they are identical to the back 8. I'm guessing this isnt a good thing, though instead of having both light up when I push the buttons now still only lights in the back 8 are controllable. The original task only had 8 lines (Dev1/port0/lines 0-7), so i made a new one that goes from port0 0-7 and has port 1 0-7 as i could not figure out how to extend the port0 to have more lines than just the 8. any more guidance would be great!</description>
      <pubDate>Wed, 16 Jun 2010 14:57:30 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-does-this-program-group-and-cluster-these-button-values-into/m-p/1149328#M505668</guid>
      <dc:creator>superomario</dc:creator>
      <dc:date>2010-06-16T14:57:30Z</dc:date>
    </item>
  </channel>
</rss>

