Two VI merging (a Temperature PID and Light sensor detecting) plz help

Hi,
my goal is to get the data from the light sensing detectors and also to control the Temperature too.
So I designed a VI named Light detecting "sensor and data storage.vi" but the problem was temperature controlling.
as in this VI I can not set the temperature which I want.
So I made another VI named "temperature control PID.vi", and now I can control the temperature through the thermocouple.
But again the problem is that I can not run Both the VIs at the same time.
and when I try to run both the VIs at same time, the following error appears,
and I think, it is because that both the VIs has the settings for same thermocouple and can not acquire the data (teperature) at the same time.
So I want to remove the thermocouple settings from the "Light detecting sensor and data storage.vi" and want to put the " temperature control PID.vi" into it. 
I am uploading both the VIs, If anyone can solve it, His work will be appreciated.
Attachments:
Light detecting sensor and data storage.vi ‏190 KB
temperature control PID.vi ‏140 KB

Hi,
I mean to say that from the first VI, i m getting the signals from detectors and it also shows me the temperature. but from this VI, I can not set the temperature of the heater.
thats why I made another VI <the second one in attached files> by which I can control the temperature.
but both the VIs are not working simultaneously.
so plz delete the temperature settings from the first VI and put the second VI into it.
thanks.

Similar Messages

  • I have a macbook connected to LED cinema display. The display started to flicker. The display turns black for a second or two. Sometimes I restart macbook and display. Sometimes it helps.

    I have a macbook connected to LED cinema display. The display started to flicker. The display turns black for a second or two. Sometimes I restart macbook and display. Sometimes it helps.

    same issue, either your wiring or display itself is going bad. for me, it was the display but luckily still under warranty

  • Help: z10 stl002 proximity and light sensor issue

    Proximity and light sensor not supported message on BBVE, both sensors stop working

    I have BlackBerry z10 and I had the same problem ( proximity sensor was not working while being on call) and it started only available the update 10.3.1.1565. Then I noticed that my sensor was working before the update, that meant that hardware was okay. It might be the problem with the update. But I had got a new glass guard for the protection of my phone screen, I thought to remove it and then check. To my surprise, now it is working fine. I suggest you, if you also have some screen guard or glass guard on your phone, remove it and then check if it works. For me it did.

  • Proximity sensor and light sensor not working

    Z10STL100-1/10.2.1.2141
    My proximity and light sensors are not working. BlackBerry virtual expert can't detect motion in proximity sensor test and not able to handle light dim or high in light sensor.
    What should I do now?
    It's very frustrating because I just bought this phone yesterday.

    Strange thing happened to me today. When i did security wipe my both sensors started working. Both were working till evening. Then suddenly it stopped working, so what is the problem.?
    I am really waiting for solution.

  • My ph's apple4g i update latest virsion 7.0.4 now my ph was very slaw,can i get a 6.0.3 or 7.0.0 and how to install plz help me.........

    my ph's apple4g i update latest virsion 7.0.4 now my ph was very slaw,can i get a 6.0.3 or 7.0.0 and how to install plz help me.........

    3.5.x will be supported until August.
    http://www.mozilla.com/en-US/firefox/all-older.html
    Also see: [[Installing a previous version of Firefox]] and [[Installing Firefox]]
    If you want to troubleshoot your problems with Firefox 3.6.x you can start with [[Firefox hangs]]. Start basic troubleshooting with [[Safe Mode]].

  • TS3274 my ipad does not start or reset even. when i hold both buttons only apple logo appears and ipad wont start. plz help somebody

    my ipad does not start or reset even. when i hold both buttons only apple logo appears and ipad wont start. plz help somebody

    try restoring see guide
    http://www.ipadforums.net/ipad-help/2987-how-put-your-ipad-into-recovery-mode.ht ml

  • Binary addition,subtraction and modulus...plz help urgent

    plz help me on this query...
    i need to pass two 512 bit number as string,then convert them to binary and
    then perform binary addition,subtraction,modulus operations on those two numbers.finally convert result to integer.
    i designed a code which doesnt work correct.it is:
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package bytearrayopeations;
    import java.math.BigInteger;   
    * @author sheetalb
    public class binaryadding {
        public static void main(String[] args) {
            BigInteger a = new BigInteger("123456");
            BigInteger b = new BigInteger("5121");
            String bb1 = a.toString(2);
            String bb2 = b.toString(2);
            String ss1 = null;
            String ss2 = null;
            String result = "";
            String carry="0";
            System.out.println("first value=" +bb1);
            System.out.println("second value=" +bb2);
            int k=bb1.length();
            int h=bb2.length();
            System.out.println("length 1="+ k);
            System.out.println("length 2=" +h);
            int p=h-k;
            //System.out.println("difference=" +p);
            int q=k-h;
            //System.out.println("difference 2=" +q);
            if(h==k)
           else if(h>k)
                for(int i=0;i<p;i++)
                    bb1="0"+bb1;
                System.out.println("new value of first=" +bb1);   
        else if(h<k)
            for(int i=0;i<q;i++)
                bb2="0"+bb2;
            System.out.println("new value of second=" +bb2);
            StringBuffer sb1=new StringBuffer(bb1);
         StringBuffer sb2=new StringBuffer(bb2);
            bb1=sb1.reverse().toString();
         bb2=sb2.reverse().toString();
            //System.out.println("rev. buffer1=" +bb1);
            //System.out.println("rev. buffer2=" +bb2);
            for(int i=0;i<bb1.length();i++)
                ss1=bb1.substring(i,i+1);
                ss2=bb2.substring(i,i+1);
              System.out.println("value1=" + ss1 + "    " + "value2=" + ss2);
              if (ss1.equals("0") && ss2.equals("0")) 
                 if (carry.equals("0")) 
                     result+="0";
                        else
                            result+="1";
               else if (ss1.equals("1") && ss2.equals("1"))
                if (carry.equals("0")) 
                    result+="0";
              carry="1";
              else
                   result+="1";
                   carry="1";
        else if (ss1.equals("0") && ss2.equals("1"))
                     if (carry.equals("0")) 
                         result+="1";
                   carry="0";
                        else
                          result+="0";
                                    carry="1";
               else if (ss1.equals("1") && ss2.equals("0"))
                     if (carry.equals("0")) 
                        result+="1";
                        carry="0";
                   else
                                result+="0";
                                carry="1";
           System.out.println("sum=" +result + "         " + "carry" + carry);
                        result+=carry;
                        StringBuffer sb3=new StringBuffer(result);
                        result=sb3.reverse().toString();
                    System.out.println("result is " +result); 
                  System.out.println("Binary = "+ result + ", Decimal = "+Integer.parseInt(result,2));
    }plz provide me or email me if possible java coding for all three operations as soon.
    [email protected]

    One thread is enough. Continue here:[http://forums.sun.com/thread.jspa?threadID=5373720&messageID=10643157#10643157]

  • Hi i installed wrong iousbfamily on osx and now my login screen is frozen, keyboard and mouse not working plz help

    hi i installed wrong iousbfamily on osx and now my login screen is frozen, keyboard and mouse not working plz help

    How and why did you install that?  What steps did you take in that process.  I can then help with some steps to undo them. 

  • HT4623 i have iphone 4 with 4.3.2 version, i want to upgrade the software. but my phone is not getting synchronised on itunes and not getting detected. please help me

    i have an iphone 4 with 4.3.2 version, i want to upgrade the software. but my phone is not getting synchronised on itunes and not getting detected. also there is no update software tab under settings.please help me

    If your phone isn't being recognized by your computer, you need to follow the steps in this article to resolve that
    Also, some basic isolation needs to be done. Does it show up in itunes on any other computers? do you have other cords you can test with to see if it might be the cord? if the phone doesn't show up on any computers, it's likely your phone has a hardware issue
    http://support.apple.com/kb/TS1538?viewlocale=en_US is the article to use if you want to concentrate on trying to get a particular computer to recognize your phone

  • Why can't I play a certain song on my iPad Mini when it was working the day before, but after syncing it to my iMac, it won't work on both my iPad and my iMac. Plz help

    Why can't I play a certain song on my iPad Mini when it was working the day before, but after syncing it to my iMac, it won't work on both my iPad and my iMac. Plz help

    Accidents happen, and apple can certainly assist you with replacement of said device.  Most manufacters would tell you to buy a brand new retail unit, apple will charge you about half price for a replacement unit.  I agree its unfortunate that it happend, but expecting a free replacement is just going to lead to disappointment

  • I was going on to a game and my screen turned white and wont turn off Plz help

    My ipod went white and wouldnt turn off.I was playing myhorse then that happer.What happen to my IPod?
    Plz help

    - Try a reset:
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Connect the iPod to your computer and try to restore via iTunes.
    - If screen still white, let the battery fully darain. After charging for an hour try the above again.

  • My font in email is too small and spell ceck is too small and light to read. HELP Please.

    According to the Firfox help which I have tried everything suggested. I can get the font readable size by using the + sign - it does not always hold BUT the spell check is even smaller and so light it is impossible to read. This only happens with my Firefox Yahoo account. Any suggestions?

    Reset the page zoom on pages that cause problems: <b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    * http://kb.mozillazine.org/Zoom_text_of_web_pages
    You can use the NoSquint extension to set font sizes (text/page zoom) and text colors on web pages.
    * NoSquint - https://addons.mozilla.org/firefox/addon/nosquint/

  • Q10 Proximity sensor and light sensor

    Hello, 
    I updated my Q10 to .2941 last week or so and since the update both of the sensors stopped working. In fact i tried to check via BBVE and on those two test for these sensors it said cannot obtain data from sensors. This happened after the update and now issue is that I went back to older version, it didnt help, got the latest version via autoloader, still didnt work. I am stuck with this issue and its a meance as everytime i call or get a call my screen does go black as it should and in order to use screen via call, I do need to unlock the device via gesture that is annoying. 
    I have removed my protector still didnt help.
    I am putting phone near my ears yet it doesnt go black. 
    please someone help me on this one. 

    When you did the test on BlackBerry Virtual Expert. If there was a connection problem with the sensor(s). BBVE will say it's not available for your device. As it's begun after your update. Try reloading or updating the phone via BlackBerry Link. Don't use autoloader.
    Craig Ashcroft Elite UK
    If this post helps you please click the LIKE below the post(s)

  • MF8580 prints two pages, then gives paper size and settings mismatch error. Help!

    Hello, I have been dealing with this problem for weeks now. When i called support, they told me it was my computer, that it was "running slow" and that i need to pay for their service - that fixing errors in my registry would fix the problem. However, i have my own registry cleaner and that isnt the problem. Every time i print something, the printer will print the first two pages, and then beep, giving me the error "paper size and settings mismatch Drawer 1" - I have everything set to letter - in the driver, on the printer, etc. I do nto understand why it prints two pages and then tells me there is a mismatch. If i open and close the drawer, it will print the second page again and then the third page, and give me the same error again. rinse and repeat. This also happens when multiple documents are spooled. I send three - one page documents, it will print the first and second, give me the error, i open and close the paper drawer 1, then it prints document two and three - then gives me the same error - i open and reclose and it prints the thrid document... I am just baffeled.  

    Hi!
    To ensure the most accurate information is provided, we will need to know the version of Windows or Mac in use. Also, we wanted to mention that it sounds like the number you reached was not an official Canon support number, as we do not charge for support.  If this is a time-sensitive matter, our US-based technical support team is standing by, ready to help 24/7 via Email at http://bit.ly/EmailCanon or by phone at 1-800-OK-CANON (1-800-652-2666) weekdays between 10 AM and 10 PM ET (7 AM to 7 PM PT).
    Thanks and have a great day!

  • Passport - Proximity and Light sensors 'unavailable '

    It's 3 days with the Passport and I am getting disillusioned like rolling down the cliff.
    1) The Proximity sensor dosent work and the phone screen goes blank after a call is over until I hit the lock button.
    2) The keyboard dosent light up even in pitch dark. The BBVI indicates unavailable sensors.
    3) Data transfer from my q10 to Passport via BlackBerry link was garbled and contacts do not show up correctly.
    4) if I go to contacts and hit search, there is an inordinate delay, the results are shown after a while.
    I think my Q10 was far better than the Passport.
    Need help to rectify these issues.
    Is it the new software update which could have done the damage?
    Solved!
    Go to Solution.

    Hi @brownhawk 
    Regarding issues 1 and 2, if you restart your device you should see the sensors function as expected. 
    For more details check out the following KB > KB36375 The BlackBerry Passport Sensors are no longer communicating with the BlackBerry 10 software
    For the contacts issue, can you expand on your statement about them be garbled and not showing up correctly? 
    How many contacts do you have as well? To find out, open the Contacts app, tap and hold on the first contact and pull down slightly and you'll see a total contacts number appear. Thanks! 
    Did someone help you? Click Like! Did a post solve your issue? Click Accept as Solution!
    Follow me on Twitter or Google+ and subscribe to the Inside BlackBerry Help Blog

Maybe you are looking for

  • CC on 2 laptops

    Hi I have the £8.78 photoshop and Lightroom deal on my MacBook Pro. All fine. How do I install onto my toshiba windows laptop too. I have no serial number that I'm aware of?

  • Addaitional Data on BP's in R/3 available in CRM?

    In R/3 via transaction VD03 (Display Customer General Data) there is a menu Extras > Additional Data section There it is possible to maintain some Freely Definable Attributes As standard Attributes 1 - 10 are displayed Definition Identifies a particu

  • BootCamp 5 on a 2008 1st gen Unibody MBPro

    This is an experience and frustration sharing. Using BootCamp 4 on 10.8.2  I was able to upgrade my Windows 7 installation to Windows 8 64bit. I had a perfectly good working installation with absolutely no problems using the drivers from the this ver

  • How to fix the iOS 6 artwork mess on iPod Touch 4th Gen? I'm desperate now!

    Okay. So this has been going on for a while and I've finally reached a dead end. Since the update to iOS 6 my musical updates to my iPod Touch have been painful and annoying. Whenever I try to upload new songs to my device, almost everytime iTunes fe

  • Reducing data sent by Idoc

    Hi experts, We are looking  to reduce data sent by IDoc. We focus on FIDCC2 IDoc type. IS-U and FI-CA modul are used on our project. Did you have any documentation on - message reduction parameter (transaction BD53) - a way to add to the reference me