Have troubles switching between two ethernet stepper motors

Hi,
Please see the attached files.
Only the Axis which was initialized first is moving. The same motor moves from Step 1 (Rotate)-->Step 2 (Tilt Up)--> Step 3 (Tilt Down).
The other axis is not moving at all.
Could you please help me solve this problem?
Many thanks,
Cathy
Attachments:
three-step_20150410.vi ‏49 KB
probe_three-step-20150410.png ‏141 KB

I have the same problem. Once one axis has been interacted with, any attempt to move (or do anything else) on the second axis moves the first axis instead. I've tried invoking Destroy Motion Reference and disabling the axis but to no avail. The only way I've been able to switch the axis is by aborting and restarting the VI.
Attachments:
Ethernet Stepper Foobar.vi ‏36 KB

Similar Messages

  • How do I quickly* switch between two Skype account...

    I have a need to be able to quickly* switch between two Skype accounts on my Windows 7 desktop computer.
    Both accounts have high-security difficult-to-remember and hard-to-type passwords.
    Many products have a facility for doing this, remembering recent account/password combinations, or having linked accounts.
    Does Skype have a way of doing this?
    And if it doesn't, how do I request it get one be developed?
    I use a password manager, LastPass, but of course Skype isn't a browser so it doesn't work with Lastpass.
    * "Quickly switch" means without switching computer sign-on accounts and without re-typing the high-security difficult-to-remember and hard-to-type passwords many times per day.
    I understand you're all volunteers.  Thank you very much for your efforts on this.
    - Keith
    Solved!
    Go to Solution.

    This can be done by setting up an another Skype client in a separate directory and with a shortcut containing the extra /datapath, /removable and /secondary switches.
    http://community.skype.com/t5/Windows-desktop-client/Why-did-Microsoft-have-to-go-and-ruin-Skype-lik...
    For your purpose you can make use of a copy of Skype.exe of the already installed Skype application.

  • White box appears while switching between two desktops

    Hello all,
    Since few weeks I have a problem when I switch between two Desktops. Everytime I switch between them a white box appears in the left corner of my screen (see screenshot).

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Ethernet Stepper motor- ISM-7411

    Some questions regarding the Ethernet Stepper motor- ISM-7411:
    I would like to make a wheel to turn to 24 fixed positions.
    1.How many  'Steps/Rev​' do I need to set up? 
    ​And where can I set up the 'Steps/Rev​' from the vi?
    2. How do I configure the axis? Can I open 'Axis Configuration Dialog Box' with the ISM-7411?
    3. Can I make the SoftMotion read the 'Configurator files (.st files) ' from the Stepper Configuration utility?​
    Many thanks!

    Hi djh101,
    You mentioned that this works fine and only occasionally throws these errors. Have you been able to find any pattern or cause that leads to the errors being thrown?
    In the meantime I wanted to let you know what I was able to find on Error -52023. It may not be relvant to your situation, but I want to provide it just in case. I've linked it below.
    Why Do I Receive Error -52023 Using a USB R Series Device When Inserting or Removing an Additional Device?
    http://digital.ni.com/public.nsf/allkb/B4CFA24F5C6​3D46D86257BC60051D7DD?OpenDocument
    I hope this helps!
    - Kale 

  • Switching between two languages

    Is there any easy way to switch between two languages - Pingyin and English. At the moment, I have to go to settings and change the language and then go to Keyboards and delete Pingyin.
    iPhone 5s with IOS 8.1.1.
    Thanks.

    That's what the "globe" key is for.

  • How to switch between two query in Web templete.

    Hi all,
      Here i am facing problem to switch between two query in web template by using one 'table' web item. is there any way to use hyperlink 'SAP_BW_URL' and we can switch to query. here i am using these HTML code..
    <table><tr><td class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td>
    <table><tr><td class="sapbexbtnstd" ><A href="<SAP_BW_URL cmd='reset_item' item='table_data' query_ID='ZSD_ZSD_M01_Q20' apply_cmd_on_target= "X">" >Switch to other query</A></td></tr></table>
    but i am not getting correct functionality.
    please help me to solve this problem.
    I know the best way to say thanks in SDN.
    thanks
    Kiran Patel

    Kiran,
      Use the web api reset_data_provider as links or in select option in HTML.
       Onchange event of this select option should call JAVASCRIPT method and
       this in turn resets the current dataprovider to your concerned one.
       How to change graphs:
       The graph item has the default data provider:
       <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="CHART_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_CHART"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             <param name="TMP_CHART_DATA_HANDLE" value="IIP_49MOXB0UVNOMM6JOZMZU7QO21"/>
             ITEM:            CHART_1
       </object>
      So if you change the DATAPROVIDER_1 using RESET_DATA_PROVIDER to your concerned DP, this changes chart as well !!
       Please use this method and refer to sample code for Onchange Event on SELECT OPTION:
      <HTML>
    <HEAD>
    <script>
    function callDP() {
         if(document.forms[0].dp.value == "1") {
            //form your URL here..
           url = SAP_BW_URL_Get() + "&CMD=RESET_DATA_PROVIDER&DATA_PROVIDER_1=..&...";
            SAPBWOpenURL(url);
            //or docuemtn.location.href = url..
            //etc..
    </script>
    </HEAD>
    <BODY>
    <form>
    <select name="dp" onChange="javascript:callDP();">
    <option value="1">1</option>
    <option value="2">2</option>
    </select>
    </form>
    </BODY>
    </HTML>
    HOPE THIS HELPS !!!

  • Auto switch between two networks in one location

    I have two wireless basestations in my home. They run on 802.11g, but have different network names and passwords. If I have the names and passwords stored in Keychain, is there anyway to have the computer automatically switch between the networks with the best signal?
    Also, is there a utility that can automatically switch between connection methods based on which one has the fastest speed (i.e. an ethernet and wifi card, maybe one is faster than the other sometimes)?

    I never realized that. Why is that?
    A base station acting as a relay or remote must handle the traffic wirelessly 2 times.
    The relay (or remote) base station must listen for the data from the main base station.
    The relay (or remote) base station must then transmit the data to the client.
    This means that wireless network can only handle half the data.
    Every time you add a WDS relay or remote the available bandwidth gets cut again.
    Do you think you're approach is always better?
    Connecting them via Ethernet will result in the full wireless bandwidth being available.

  • Itunes unresponsive when switching between two devices

    For God Sake help me with this,
    i have so many apps on my iTunes(mac) ,since i updated my itunes from 11 to 12 it has been my worst nightmare ever..
    whenever i attach two or more devices ,switching between devices it becomes unresponsive so that i have to force quit iTunes
    i googled this issue,tried lots of things.but no success
    plzzzzzz help

    Paul,
    Thanks for responding.
    I'm still confused as to which field the script goes in and how to enter it in relationship to any existing script.
    Instead of me trying to explain verbally, I'll show you what I have.
    Document Hierarchy:
    Subform path & script: (I'm assuming I need one for each subform)
    xfa.host.resetData("xfa.form1.Page1.subform1");
    xfa.host.resetData("xfa.form1.Page1.subform2");
    "Radio Button List" Click Event script that shows/hides subforms:
    form1.Page1.FLOC.RadioButtonList::click - (JavaScript, client)
    if (this.rawValue == 1)
        Subform1.presence = "visible";
        Subform2.presence = "hidden";
    else if (this.rawValue == 2)
        Subform2.presence = "visible";
        Subform1.presence = "hidden";
    if (this.rawValue == 1)
        Efficiency.presence = "visible";
    if (this.rawValue == 2)
        Efficiency.presence = "visible";
    I've tried putting the script  inside the curly brackets, outside the curly brackets, at various locations within the above script, but no matter where I put it, it clears the entire form.
    Would you be so kind as to re-write the above script  properly so I can see what it's supposed to look like.
    Thanks!

  • Getting around commiting at task to hardware in DAQmx and maintaining HW timing when switching between two AI tasks.

    I have a project that requires two HW timed AI task that are triggered at different rising edges. I originally started with an example vi that has HW timed retriggerable AI that seemed to working fine until I decided to capture two channel with a seperate task. I received error messages due to the orginal task being committed to the hardware that prevented the second task for being configured due to reserved resources.
    I was able to changed the commit to verify and switched from a analog edge trigger to a digital edge so I could use another PFI for triggering the second acquisition and the program seems to work fine at the momment.
    Questions that I have are:
    What exactly do verify, reseve and commit refer to in regards to task setup and impact on task switching delay. What information is actually transfered when configuring the task and what are the typical delay times for switching between tasks for the task controls listed above on a PCI6071e card. I am concerned that HW timing may have been sacrificed in order to work around the reserved resources and that if someone bumps the mouse the timing sequence will miss a trigger due to an IRQ.
    Any information on this topic would be greatly appreciated.
    Kindest Regards,
    Bill

    Lon,
    Thanks for  the reply. I have another related question in regards to configuring the read property node for a digitally triggered start-stop routine with 2 presamples and collecting 5 samples per channel on 14 channels. Triggering occurs at 500 Hz and the total sampling time for all channels is restricted to 500 us max. I am current dealing with a single AI task and having difficulty capturing all the data in an output file. I have tried using a large array to store the data until the test is complete then write the array to a file to see if the file I/O was the problem. It did not work.
    I have looked the the vi and information with respect to "How do I use digital triggering to start and stop AI". The description included with the vi indicates that the read property "Relative to" must be set to current read position and the buffer definition modified to something hugh in order to keep the ahead of the write. I have tried this and cannot seem to capture the correct number of bytes in the output file. I have tried different "Relative to" settings and offsets with no luck.
    A quick summary of the test is 1000 cycles with 5 samples per channel on 14 channel captured twice during each cycle. Data read as I16 (2bytes). Neglecting the 300-500 bytes in the test comment header,  the file should be in the 112k range (1000*5*14*2*2). When I do happen to collect some data the file size is either way too small or much larger than expected.
    All this information to ask the simple question; How do I configure the read properties to make certain that I collect all the data and store it in a file.
    I apologize for running on about this problem, but I am getting really frustrated with this.
    Kindest Regards,
    Bill

  • Switching between two tables in the front panels

    Hi
    I am working on an application,which has two "Tables"
    in the front panel. Both the tables do get updated
    simultaneously from the same test,
    Table-A displays
    A short summary report while the test is beign executed, and result.
    Table-B displays
    A detailed report of the test and its condition and parameter
    along with results.
    My front end is a simple display table, along with couple of
    Button controls,like "START","ABORT","DeTAIL DISPLAY" and "QUIT"
    ofcourse.
    All these buttons are used in Event driven case structures except
    "DeTAIL DISPLAY"
    as the execution beigns, on the press of start button,
    there are number of tests in which i have to pass, parameters to
    DLL and get back the result parameters.
    The end customer requires to switch the display between the TABLE-A  & TABLE-B during execution.
    so i have a, seperate while loop,where in a case structure is wired to "DeTAIL DISPLAY"
    button, and if true, visible is set to true to TABLE-B, and false to TABLE-A,
    and vis-versa. as per the logic this while loop should take care of switching between the
    tables.
    The other while loop Takes care of the entire test.
    My problem is that, while i execute the switching of tables are not fast.
    it waits till the tests are over,and event case structure is in idle state, and then switches to the other table.
    Also some times i am unable to click on button"DeTAIL DISPLAY", as the event control
    case structure, is not responding till end of the execution.
    How to over come this problem
    rags

    Hi,
    Have you tried using notifiers in master slave architecture?
    check this out
    Attachments:
    Notifier.vi ‏45 KB

  • Switching between two Apple IDs - 90 day wait?

    I have been smoothly transitioning between two apple IDs on iTunes for the last year. I have just switched from PC to Mac and suddenly there's a message that states I have to wait 90 days before I can associate another Apple ID with this device. I don't really understand what this means, especially since I've already successfully logged in to both Apple ID accounts in iTunes on my new Mac.  I don't want to wait 90 days every time I buy something from one account before it will let me buy something from the other (is this what this means?)  I'd really appreciate an explanation from the learned Mac-user community.  Thanks so much for your help!

    annikaaus wrote:
    Thank you, I did find that information myself, but it didn't really make things clearer to me.  Once the 90 days is up will I be able to switch back and forth as I please? Or do I have to wait 90 days every time I want to switch IDs?
    You can switch back & forth now as you please for new purchases (not for redownloading). 90 days is for redownloading.
    iTunes prefs > Store.
    Uncheck Automatic Downloads.
    And why wasn't I aware of this wait time on my old PC device?
    You never saw this because Automatic Downloads was not ticked.

  • Is it possible to switch between two BOM usages in the order?

    Hello Experts,
    We have created two maintenance BOM's say Structural BOM - Usage Plant maintenance & Spares BOM - Usage Spares for a technical object.When I am creating an order,in the components list I can only list the BOM with Usage plant maintenance.Is it possible to switch between the usages?I need both the usages for selecting materials in the components tab.
    Thanks,
    Ashraf

    We are on ECC 6.0
    Regards,
    ashraf

  • How to create and switch between two different Mail accounts.

    Dear Apple,
    My wife and I share the same computer and the same single user account.
    Sharing contacts, calendar, music and pictures in fine, but we would like two separate Mail accounts.
    Is there a way to setup two Mail accounts with two separate mailboxes and switch between them manually?
    Regards,
    Stephan

    Ok, I'm confused.  If you have 2 accounts set up -- for example, "[email protected]" and "[email protected]" -- then you go to the "Accounts" tab on Mail->Preferences, and set them up, giving each one a name which distinguishes it from the other.  Maybe "AOL" and "gmail" or "foo" and "bar" or your first names, whatever.
    Then, if you select the line that says "Inbox" you will see mail from both accounts interleaved together.  If you fold down the triangle thingy next to the word "Inbox" then two lines will appear, one for each account.  If you click on one of those lines then your display will only show the mail from that mailbox.

  • Recommendations for switching between two machines and one monitor

    Hi,
    I have a MacMini and a MacBook Air, both with Thunderbolt Display ports but I have one monitor. I'd like to switch between the two without having to unplug and plug the monitor back in every time. Any recommendations for some sort of switch or Thunderbolt hub would be greatly appreciated.
    Best,
    Chris

    This should work if the display use display port/mini displayport inputs. A mini display port connectors plugs into the Mac's Thunderbolt port for video
    http://www.kanexlive.com/snapx

  • How to automatically switch between two different Wi-Fi settings?

    Hello,
    I have to work with two different Wi-Fi (at home and office) one of which uses DHCP and other requires me to manually enter IP address. Right now I have to keep on changing Wi-Fi settings (putting IP addresses when at office and setting to DHCP at home) whenever I go from home to office and then do the reverse when I go from office to home. Can I automate that so I don't have to repeatedly fiddle with settings?
    Using OS X Mavericks 10.9.3.

    In System Preferences > Network settings unlock the settings as an admin user and then click the 'Location' popup (normally set to Automatic by default).
    Create a new 'location', then tweak the settings & apply them.  Repeat this for the other collection of network settings with another 'location'. The Locations can be switched as needed in the 'Apple menu > Location' (this appears when you have multiple locations.
    Apple explain it at…
    http://support.apple.com/kb/HT2712
    There are ways to change this automatically, but they are generally quite involved…
    http://hints.macworld.com/article.php?story=2005010613401823
    I suspect there is an app that will do it if you search around (manual switching seems good enough IMO).

Maybe you are looking for

  • Im having issues uploading images via imacros to my fan page they wont display suspecting its the browser any thoughts?

    i have no issue with youtube uploads just facebook and pinterest images can anybody help thanks

  • Password protect on acrobat x

    when i try to password protect a pdf document using acrobat x on windows 7 platform i can't get to the OK button to effect changes because the window extendds beyond the screen. there is no scroll option and changing the display resolution didn't hel

  • Couldn't find message in sxmb_moni

    Hi all, I followed the blog below to raise an exception to the XI with an Inbound Asynchronous proxy bu i couldn't find any message in the message monitor. Can any one please suggest the possible reason and how to correct it. <a href="/people/shabari

  • Problem: GeoRaptor on SQL Developer 1.1

    Hi, I installed SQL Developer 1.1. and the Extension GeoRaptor (http://mygeoraptor.googlepages.com/installation) on WinXP SP1 without error. But there is not the <GeoRaptor> extension in the menu extension for a SDO_GEOMTRY incl. table. The data view

  • HP Photosmart 5520 only printing black

    I have a new Photosmart 5520, loaded with new HP cartridges.  The ink colour levels are showing as fine, but it will not print in colour, only black.  Have tried with various PCs.  Test sheet and copying also comes out mono.