<?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: Sending SMS using labview in LabVIEW</title>
    <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1797578#M620449</link>
    <description>&lt;P&gt;Now the program work if weight is hreter then I set send sms,but the results is 6 sms messages in 8 seconds.I want only one sms when is condition is true (set weight and measured weight) &amp;nbsp;I really do not know how to set the flag when is first sms send, and reset the flag when weight dropt down.&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 03 Dec 2011 21:00:30 GMT</pubDate>
    <dc:creator>Ajtimstoj</dc:creator>
    <dc:date>2011-12-03T21:00:30Z</dc:date>
    <item>
      <title>Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1793088#M619625</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;I need help, in my Vi code the message are send every 5 second and this is my problem.&lt;/P&gt;
&lt;P&gt;I want to send only one message if weight are greeter then set in box weight, and if i set a new number greter then also must send only one message.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And my second problem are when receive SMS to my cell, the message looks: are: 502,00000&amp;nbsp;&lt;BR /&gt;The word weight are missing and five zeros I&lt;SPAN class="hps"&gt;&amp;nbsp;do not know&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;where&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;they come&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;from .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thanks in advance for any help&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2011 12:25:58 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1793088#M619625</guid>
      <dc:creator>Ajtimstoj</dc:creator>
      <dc:date>2011-11-30T12:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1793344#M619677</link>
      <description>&lt;P&gt;It does not matter whether you're sending an SMS message or hitting a kumquat. You need to have a flag that is set once the message is sent. You look at the flag to determine if a message has already been sent. You reset the flag once the weight falls below your target. A simple Boolean will work as a flag. You can use a shift register or a Feedback Node.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other comments:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Do not place the VISA Configure Serial Port and VISA Close inside the loop. These belong outside the loop - you do not need to reconfigure the serial port each time you send a message.&lt;/LI&gt;
&lt;LI&gt;Do not use such a large time delay. It effectively prevents you from quickly stopping the VI. If you press Stop while the code is inside the inner case you have to wait 10 seconds before the VI actually stops. If you want to check the weight once every 10 seconds, then use a small loop delay and use the Elapsed Time to see if the required amount of time has passed.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;I don't quite understand why you are using a combo box for the message prefix. Why not a simple string control? &lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;As for your second problem: the extra zeros are due to the Format Into String function. You did not provide an explicit format string, so it's giving you a default conversion. Please read the LabVIEW Help on the Format Into String function for various formatting strings. If you want the weight rounded then you can simply use %d to convert to an integer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2011 14:56:02 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1793344#M619677</guid>
      <dc:creator>smercurio_fc</dc:creator>
      <dc:date>2011-11-30T14:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1794618#M619890</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Thanks for help, now i solve the problem of zeros and now&amp;nbsp;&lt;SPAN class="hps"&gt;I &lt;/SPAN&gt;&lt;SPAN class="hps"&gt;working on SMS problem.&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;How can I clear buffer of rs232 before send a message? Because now in this VI, when receive a SMS looks: AT+CMGS="+38670xxxxxx" Weight is 41,&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;BLOCKQUOTE&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;EM&gt;Do not use such a large time delay. It effectively prevents you from quickly stopping the VI. If you press Stop while the code is inside the inner case you have to wait 10 seconds before the VI actually stops. If you want to check the weight once every 10 seconds, then use a small loop delay and use the Elapsed Time to see if the required amount of time has passed.&amp;nbsp;&lt;/EM&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;I insert the delay because when the case is true I receive 4 sms in 3seconds.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;EM&gt;I don't quite understand why you are using a combo box for the message prefix. Why not a simple string control?&lt;/EM&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;The program must have a box to insert a sms number.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="hps"&gt;Thanks&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;for your help&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;which I&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;still&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;need&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.ni.com/i/smilies/16x16_smiley-happy.gif" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2011 10:03:38 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1794618#M619890</guid>
      <dc:creator>Ajtimstoj</dc:creator>
      <dc:date>2011-12-01T10:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1794910#M619944</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/208746"&gt;@Ajtimstoj&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Thanks for help, now i solve the problem of zeros and now&amp;nbsp;&lt;SPAN class="hps"&gt;I &lt;/SPAN&gt;&lt;SPAN class="hps"&gt;working on SMS problem.&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;How can I clear buffer of rs232 before send a message? Because now in this VI, when receive a SMS looks: AT+CMGS="+38670xxxxxx" Weight is 41,&amp;nbsp; &lt;/LI&gt;
&lt;/UL&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The VISA Flush I/O Buffer is used to clear the buffer(s). I do not know why you want to clear the buffer. You did not indicate what you are controlling (I'm guessing it's some kind of modem), so clearing the buffer is not necessarily the correct thing to do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;EM&gt;Do not use such a large time delay. It effectively prevents you from quickly stopping the VI. If you press Stop while the code is inside the inner case you have to wait 10 seconds before the VI actually stops. If you want to check the weight once every 10 seconds, then use a small loop delay and use the Elapsed Time to see if the required amount of time has passed.&amp;nbsp;&lt;/EM&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;I insert the delay because when the case is true I receive 4 sms in 3seconds.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This doesn't make much sense. Your fundamental problem is that you do not have a flag that checks to see if a message has already been sent. Your loop will keep sending the message over and over again while the weight is above a specified value. Is this what you want? Or, do you only want to send it one time only, each time the weight exceeds the value? If it's the latter, then you need a flag. See attached example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;EM&gt;I don't quite understand why you are using a combo box for the message prefix. Why not a simple string control?&lt;/EM&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The program must have a box to insert a sms number.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This makes no sense either. Your SMS number is a different control which is a string control. Why do you need a combobox to provide the text that comes before the value? Are you intending to provide a choice of messages? If not, then using a combobox makes no sense. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You also still have the serial port initialize and close inside the loop.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2011 14:16:39 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1794910#M619944</guid>
      <dc:creator>smercurio_fc</dc:creator>
      <dc:date>2011-12-01T14:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1796016#M620130</link>
      <description>&lt;P&gt;Why did you create a new thread?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The questions you asked in the new thread seem to be pretty much the same ones you asked in the &lt;A href="http://forums.ni.com/t5/LabVIEW/Sending-sms-using-labview/m-p/1792994#M619606" target="_blank"&gt;original thread&lt;/A&gt;!&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2011 04:24:10 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1796016#M620130</guid>
      <dc:creator>RavensFan</dc:creator>
      <dc:date>2011-12-02T04:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1796082#M620144</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Ravens Fan wrote:&lt;BR /&gt;
&lt;P&gt;Why did you create a new thread?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The questions you asked in the new thread seem to be pretty much the same ones you asked in the &lt;A href="http://forums.ni.com/t5/LabVIEW/Sending-sms-using-labview/m-p/1792994#M619606" target="_blank"&gt;original thread&lt;/A&gt;!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN class="hps"&gt;My mistake&lt;/SPAN&gt;&lt;SPAN&gt;, I&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;thought&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;it more&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;visible if I open a new thread.&amp;nbsp;Sorry about that.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2011 06:37:03 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1796082#M620144</guid>
      <dc:creator>Ajtimstoj</dc:creator>
      <dc:date>2011-12-02T06:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1796134#M620149</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/33243"&gt;@smercurio_fc&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/208746"&gt;@Ajtimstoj&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;Thanks for help, now i solve the problem of zeros and now&amp;nbsp;&lt;SPAN class="hps"&gt;I &lt;/SPAN&gt;&lt;SPAN class="hps"&gt;working on SMS problem.&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;How can I clear buffer of rs232 before send a message? Because now in this VI, when receive a SMS looks: AT+CMGS="+38670xxxxxx" Weight is 41,&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The VISA Flush I/O Buffer is used to clear the buffer(s). I do not know why you want to clear the buffer. You did not indicate what you are controlling (I'm guessing it's some kind of modem), so clearing the buffer is not necessarily the correct thing to do.&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now I know where is the error, I put wait (ms) before VISA write and now SMS receive complete.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;EM&gt;Do not use such a large time delay. It effectively prevents you from quickly stopping the VI. If you press Stop while the code is inside the inner case you have to wait 10 seconds before the VI actually stops. If you want to check the weight once every 10 seconds, then use a small loop delay and use the Elapsed Time to see if the required amount of time has passed.&amp;nbsp;&lt;/EM&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;I insert the delay because when the case is true I receive 4 sms in 3seconds.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This doesn't make much sense. Your fundamental problem is that you do not have a flag that checks to see if a message has already been sent. Your loop will keep sending the message over and over again while the weight is above a specified value. Is this what you want? Or, do you only want to send it one time only, each time the weight exceeds the value? If it's the latter, then you need a flag. See attached example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;&amp;nbsp;I want to send only one massage in one time only, now i working on it, thanks for example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;EM&gt;I don't quite understand why you are using a combo box for the message prefix. Why not a simple string control?&lt;/EM&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;The program must have a box to insert a sms number.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;This makes no sense either. Your SMS number is a different control which is a string control. Why do you need a combobox to provide the text that comes before the value? Are you intending to provide a choice of messages? If not, then using a combobox makes no sense.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You also still have the serial port initialize and close inside the loop.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;The combobox is not my idea but of my teacher, the user must insert diferent message inside, &lt;SPAN class="hps"&gt;I know&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;that there is no&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;sense but must work this &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; .&amp;nbsp;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;Now in this Vi the message send complete, no code inside and so on ... Now just work on flag &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/BLOCKQUOTE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2011 07:49:13 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1796134#M620149</guid>
      <dc:creator>Ajtimstoj</dc:creator>
      <dc:date>2011-12-02T07:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1796430#M620196</link>
      <description>&lt;P&gt;&lt;SPAN class="hps"&gt;I&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;do not know&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;how to&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;do, if&amp;nbsp;(temperature measured&amp;nbsp;greter or equal set temperature) Then set true else set false.&lt;BR /&gt;&lt;SPAN class="hps"&gt;Can&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;anyone help&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;me.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Dec 2011 13:21:43 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1796430#M620196</guid>
      <dc:creator>Ajtimstoj</dc:creator>
      <dc:date>2011-12-02T13:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1797370#M620395</link>
      <description>&lt;P&gt;I don't understand your question and I don't understand what you are trying to do.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this related to your other questions?&amp;nbsp; If not, then now is the time to start a new thread.&amp;nbsp; You shouldn't start a new thread for the same question like you had because you wind up getting people to take time to answer questions that were already answered in the other thread.&amp;nbsp; (Notice how some of the answers here were identical to the ones in the other thread.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Back to your latest VI.&amp;nbsp; I don't know why you have a case structure inside a case structure.&amp;nbsp; They both are triggering off the same boolean wire.&amp;nbsp; If the outer case structure is True, then the inner one is automatically true because you have the same boolean wire going to the selector of the inner one.&amp;nbsp; The false case on the inner structure can never run.&amp;nbsp; And in that inner True case structure, you are doing another comparison that is identical to the one you already have outside the case structures.&amp;nbsp; So you might as well just use the boolean wire coming off the outer comparison.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2011 04:22:49 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1797370#M620395</guid>
      <dc:creator>RavensFan</dc:creator>
      <dc:date>2011-12-03T04:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1797578#M620449</link>
      <description>&lt;P&gt;Now the program work if weight is hreter then I set send sms,but the results is 6 sms messages in 8 seconds.I want only one sms when is condition is true (set weight and measured weight) &amp;nbsp;I really do not know how to set the flag when is first sms send, and reset the flag when weight dropt down.&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Dec 2011 21:00:30 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1797578#M620449</guid>
      <dc:creator>Ajtimstoj</dc:creator>
      <dc:date>2011-12-03T21:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1797636#M620467</link>
      <description>You should probably read some basic labview tutorials, or ask your teacher what a flag is.</description>
      <pubDate>Sun, 04 Dec 2011 00:41:09 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1797636#M620467</guid>
      <dc:creator>WayneS1324</dc:creator>
      <dc:date>2011-12-04T00:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1798378#M620602</link>
      <description>&lt;P&gt;Ok now I solved the problem of multiple SMS, but I have another one problem. I set weight 50kg to send sms, but when I put 60kg on force cell the measured take some 2-3 secods to final value (60,00kg 61,00kg) this is ok, but&amp;nbsp;&lt;SPAN class="hps"&gt;the message sent is&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;always about 50,11 &amp;nbsp;50,44 &amp;nbsp;51,77. Never sent the final value.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="hps"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2011 14:32:37 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1798378#M620602</guid>
      <dc:creator>Ajtimstoj</dc:creator>
      <dc:date>2011-12-05T14:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1798410#M620607</link>
      <description>&lt;P&gt;You are now changing the requirements. The VI will send the SMS &lt;U&gt;as soon as the weight goes above 50kg&lt;/U&gt;. Once it does, it doesn't matter what the final weight is, and if it takes 2-3 seconds it doesn't care, because it sent the message as soon as it got above 50kg and any further increases ignored. You are continuously acquiring data, so you will catch a reading while it's increasing. Sometimes it will be 50.11, sometimes 50.44, and sometimes 51.77. It all depends on how frequently you are checking the reading. So, do you really want to send it once it gets above 50kg, or once it "settles"? Or, do you want to send two different SMS messages? One once it goes above 50kg, and another once it settles? Once you define your requirements then you know how to write the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, what in the world are you doing with that shift register? If you want a running average, use an array. Look at the shipping examples. And watch your datatypes. Your constant of zero outside the loop should be a float, not an integer. &lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2011 14:49:07 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1798410#M620607</guid>
      <dc:creator>smercurio_fc</dc:creator>
      <dc:date>2011-12-05T14:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1799084#M620722</link>
      <description>&lt;P&gt;&lt;SPAN class="hps"&gt;I will try&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;tomorrow,&amp;nbsp;&lt;SPAN class="hps"&gt;I just want&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;a only one message-sms when weight&amp;nbsp;stabilized - final value weight. If I put 60kg on load cell and sms condition is 50kg the&amp;nbsp;&lt;SPAN class="hps"&gt;message must&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;be: Weigt is: 60kg .&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Dec 2011 21:49:40 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1799084#M620722</guid>
      <dc:creator>Ajtimstoj</dc:creator>
      <dc:date>2011-12-05T21:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1799496#M620798</link>
      <description>&lt;P&gt;Hi Ajtimstoj,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think that the easiest way to check for the stabilisation of the scale is keeping the measured values in a shift register, and sending the sms only if last x values don't differ by more than some margin.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can check the simple example I added. Just replace the prompt user dialog with your measured value and set a proper margin (also depending on your needs increase the number of shift registers to compare more values), and set your sms sending code in the true case.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://forums.ni.com/t5/image/serverpage/image-id/60234i2E0AA645EC2FBDCA/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="value stable.png" title="value stable.png" align="middle" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have any questions, please don't hesitate to ask!&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2011 08:18:50 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1799496#M620798</guid>
      <dc:creator>Ardent</dc:creator>
      <dc:date>2011-12-06T08:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1799612#M620813</link>
      <description>&lt;P&gt;&lt;SPAN class="hps"&gt;I&lt;/SPAN&gt;&lt;SPAN&gt;'m trying&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;but&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN class="hps"&gt;do not know where miss. Did I miss something?&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3 class="r"&gt;&amp;nbsp;&lt;/H3&gt;</description>
      <pubDate>Tue, 06 Dec 2011 11:14:14 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1799612#M620813</guid>
      <dc:creator>Ajtimstoj</dc:creator>
      <dc:date>2011-12-06T11:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1801018#M621086</link>
      <description>&lt;P&gt;You didn't wire up anything in your&amp;nbsp;True case.&amp;nbsp; You have hollow tunnels showing that there are missing wires.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The True case should look like this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://forums.ni.com/ni/attachments/ni/170/621086/1/koncna_vaga_6122011[1]_BD.png" border="0" alt="" title="" width="595" height="309" align="center" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 06:34:41 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1801018#M621086</guid>
      <dc:creator>RavensFan</dc:creator>
      <dc:date>2011-12-07T06:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1805576#M622010</link>
      <description>&lt;P&gt;I solve the problem, thanks to all.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Dec 2011 19:41:03 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1805576#M622010</guid>
      <dc:creator>Ajtimstoj</dc:creator>
      <dc:date>2011-12-10T19:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1823309#M625189</link>
      <description>&lt;P&gt;hi everyone,&lt;/P&gt;
&lt;P&gt;do you have any idea on how to receive the sms by using labview?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i have tried with the AT commands for receiving sms and there is no error but i have encountered in receiving sms by labview!!&lt;/P&gt;
&lt;P&gt;any example codes to refer?&lt;/P&gt;
&lt;P&gt;thanks heaps&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers!&lt;/P&gt;</description>
      <pubDate>Sat, 31 Dec 2011 03:30:26 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1823309#M625189</guid>
      <dc:creator>MiBL</dc:creator>
      <dc:date>2011-12-31T03:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: Sending SMS using labview</title>
      <link>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1823667#M625258</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;since I think you are already reffering to the same issue in &lt;A href="http://forums.ni.com/t5/LabVIEW/receiving-sms-using-labview/m-p/1776954#M616502" target="_self"&gt;your other thread,&lt;/A&gt; could you please continue it there?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2012 08:19:31 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Sending-SMS-using-labview/m-p/1823667#M625258</guid>
      <dc:creator>Ardent</dc:creator>
      <dc:date>2012-01-02T08:19:31Z</dc:date>
    </item>
  </channel>
</rss>

