create the pwm with mcc usb signal 2408

Hi all

I want to generate a square wave of PWM adjustable frequency and factor market out of my usb usb MCC 2408-2ao module.

I know thatI could use while loop with a sequence of plate inside to put on and off of a digital output on an ongoing basis and by changing the duration the sequence of flat images and the time between one and another iteration of the while loop I can vary heavy duty and often... but it seems a little tedious to do.

Is there an automatic way to generate a PWM signal to measure and send it to the output of the USB module in Labview?

Thanks for all your help!


Tags: NI Software

Similar Questions

  • I installed the download tool usb/dvd windows 7, but after you have selected the iso file when I insert the USB stick and refrecing, it does show that "no usb drive compatible' what is the problem with my USB

    I installed the download tool usb/dvd windows 7, but after you have selected the iso file when I insert the USB stick and refrecing, it does show that "no usb drive compatible' what is the problem with my USB

    I have sandisk cruzer blade USB key

    Hi Rohit,

    Thanks for posting your query in Microsoft Community Forum. I understand that your USB drive is having problems of compatibility with your computer, but I would like to learn more about the issue in order to provide you with better assistance.

    1. You did it any significant hardware or change software on the computer before this problem?
    2. When do you get exactly the error message?
    3. Have you tried to connect to any other computer on this flash drives?
    4. Your USB key works on other computers or have you tried to connect to different USB ports on this computer?
    5. Is the pen drive getting detected in the case or you are able to access the drive folder in the window of the computer ?

    The question may arise if the currently loaded USB driver has become unstable or damaged, or if your PC requires an update for problems that could conflict with a device USB and Windows. This can also occur if your USB controllers may have become unstable or corrupt. So, I would suggest trying the following steps and check if the problem persists.

    Method 1:

    Please try the fixit (s) provided below which will help you solve common problems associated with devices and USB ports.

    If method 1 does not work, try Method 2.

    Method 2:

    Remove and reinstall all USB controllers.

    1. Open Manager devices by clicking the Start button, click Control Panel, click system and security, and then, under System, clicking Device Manager. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.
    2. In the list of the categories of equipment, locate and expand Bus USB controllers.
    3. Right-click every device under the Bus USB controllers node and then click Uninstall to remove them one at a time.
    4. Restart the computer and let the USB controllers get reinstalled.

    Plug in the removable USB device and test to make sure that the problem is solved.

    If the problem persists, go to method 3.

    Method 3:

    This method will install the latest drivers from device to your USB device.

    1. Click the Start button, type Windows Update in the search box, and then click Windows Update in the results pane.
    2. Click find updates. When the scan finished, click optional review updates.
    3. Click the check box next to the update, and then click install updates.
    4. If you are prompted, read the license agreement, then click I agree.
    5. Follow the instructions on the screen to download and install updates.
    6. If you are prompted, restart your computer.

    More information: Update a hardware driver that is not working properly

    Hope this information is useful. If the problem still persists, please post back for further assistance, we will be happy to help you.

  • HP laserjet 1200 using windows7, wired to the printer with a USB to parallel adapter

    HP laserjet 1200 using windows7. My computer has USB ports, but no parallel port, if the computer is connected to the printer with a USB to parallel adapter. Sometimes works very well, sometimes States printer system as ready, but do not print. Reboot hardware and upon restarting, I got a page to print. Next attempt to print updates the document in cue, but is right there - no error message. Finally, after several reboots, I managed to do print (have no idea how), but now I had to print 20 pages one page at a time. It will print no more than one page, even if I have to print the 20. Next time I start the computer I don't know if the printer will print. Do you need to use the same USB port each time, or are USB to parallel unreliable maps?

    Hey renradd!

    Unfortunately, in addition to the adapters USB can be unreliable. Only a new printer, I don't know what it will provide you with a fix for this problem. You can try a different card if you have one, but if it still does not work, I would look for in a printer capable of supporting your computer.

    I hope this helps!

  • How to create the table with the description of the table

    Hello

    I would like to create the array with the description of the table (such as the creation of package or procedure with comments).

    Is it possible to achieve thanks to the oracle, if possible please help me achieve this goal.

    Thank you and best regards,

    Ibrahim Sayyed.

    > create table test (col1 number);

    > comment table test is "about a comment ';

    > select comments from user_tab_comments where table_name = 'TEST ';

    COMMENTS
    ____________________________________________________________________
    This is a comment

  • Create the database with a set of characters

    Hello

    I need to create a database with the character US8PC437 (platform Linux Redhat 5.4 64-bit, database version 11.2.0.3), but this character set do not appear when I create the database with the database assistant (DBCA).

    Any help will be apreciated.


    Best regards

    Antonio Serrano

    Published by: albrotar on March 6, 2012 09:14

    While AL32UTF8 is certainly recommended for the Oracle database character set, use only, if your application provider has confirmed that their application will work with a set of characters to multibyte database.

    To create a database US8PC437 (it is rarely a choice, in fact) with DBCA 11.2, select the "character sets" tab, once shown, then select the option 'Choose from the list of character sets' and uncheck 'Show recommended only character sets '. This will add US8PC437 to the "Database character set" drop-down list. Select "US8PC437" from the list and continue the process of creation.

    But first, contact your provider and ask a compatible Unicode version of your application.

    -Sergiusz

  • Creating the table with time stamp

    I need to create the table with the data inside buffer

    Can you help me pls

    If it works today,

    create the table test_04NOV2010 in select * from product where product_code = '101'

    If executed tmrw,

    create the table test_05NOV2010 in select * from product where product_code = '101'
    declare
    
    v_date varchar2(25);
    v_sql  varchar2(20);
    
    begin
    
    select to_char(sysdate,'DDMONYYYY') into v_date from dual;
    
     v_sql := ' create table ' ||TEST||'_'||'v_date'|| 
                 ' as '
                 ' select * from Product where product_code = '101'
              
     EXECUTE IMMEDIATE v_sql;
    
    end;
    can is it you pls let me know how to use it in PL SQL

    Can you help me pls

    Thank you very much
    declare
    
    v_date varchar2(25);
    v_sql  varchar2(2000); --Noted this. this was also small.
    
    begin
    
    select to_char(sysdate,'DDMONYYYY') into v_date from dual;
    
     v_sql := ' create table TEST_'||v_date||
                 ' as select * from Product where product_code = ''101''';
    
     EXECUTE IMMEDIATE v_sql;
    
    end;
    

    You can use the Q operator also.

    DECLARE
    
    v_date varchar2(25);
    v_sql  varchar2(2000);
    
    BEGIN
    
    select to_char(sysdate,'DDMONYYYY') into v_date from dual;
    
     v_sql := ' create table TEST_'||v_date||
                Q'[ as select * from Product where product_code = '101']';
    
     EXECUTE IMMEDIATE v_sql;
    
    END;
    

    Published by: mohamed on November 4, 2010 05:32

  • PWM with NOR-USB 94xx?

    Hello everyone,

    already, I asked once about the creation of PWM with hardware. And I was pleased with the response. But now I found 94xx Series-USB OR hardware. Here are the materials of high-voltage-Digital i/o. If any of you have already met with this one, would like to hear your conclusion about them. Would also appreciate if you could answer my question:
    Is it possible to create a PWM Signal with NOR-USB 94xx?

    Thank you

    Grigory

    Grekov wrote:

    I'd be more interested in the USB Module NI 9472 USB connection. Because it's the only one that would match my request.

    What is your application?

    Why don't choose you something in this list.

    If your condition is out to say 24 v PWM signal... you can also plan to use a custom circuit intermediate, not only to scale the output signal of the device (at 24 v) but also the reader following circuit.

  • Question - the upgrade with 3 USB card and esata

    I have an early 2008 Mac Pro Quad core 2.67 going to have maxed out RAM soon and are planning to get a couple of 2 TB seagates Macgurus. I'm a little embarrassed by my lack of knowledge, but I'll put my questions over there anyway. Last year, I bought a 120 GB ssd card Accelsior PCIe mercury OWC - not being aware of the s and outs of things, but I knew it wasn't a port multiplier with two external esata ports. so my question is this: since I have to live with this card can I connect the esata ports to discs in separate outdoor pens and then through disk utility make a raid 0 set, and what size of disc must be effective for the cost the least?  I intend to get a USB 3.0 also so that I can use this speed also.  My other plans must be a drive of fusion with the ssd 120 on the map of Accelsior with a disk of 1td existing in my drive for the system Bay and replace all small readers of seagate more big HARD drive and I'm wondering if the 2 TB is the largest capacity I can use internally. I am on a very limited budget so that's the reason why I'm thinking hdd and if there is someone with advice on a card USB 3 I would appreciate your comments - in fact, I would be happy to comment on everything I mentioned, I'm a little out of the loop on the evolution in recent years. It is possible to configure a raid with two disks of two PPI crd esata ports would there be an advantage with drives of 2 TB or 1 TB disks would work as well for raid 0. Do I intend to put in storage for Time Machine with the USB 3 map, and what size disc would be appropriate for Time Machine? I'm not lazy and waiting for someone to find out - I did weeks of research to get to this point and I just need a little advice. I'm just going through what I know and what I can afford, but maybe I'm missing another solution to try to get a little more speed and back up storage for my photoshop files.

    I do only cc2015 Photoshop, Lightroom and On1software version 10.1 using OS X El Capitan and a cg 276 Eizo monitors more a second older Eizo. My usb ports 2 are all used and I rarely use a firewire port. Thanks in advance to all those who have advice. This is the first time that I have not posted anything on this forum

    Time machine is a USB 2 connection. No real reason for a USB 3 connection.

    There is no RAID in disk utility in El Capitan. Apple dropped the disc utility in El Capitan. However, you can still the Terminal commands to configure RAID.

    https://www.reddit.com/r/OSX/comments/3d7aw2/does_el_capitan_disk_utility_suppor t_raid.

    You should be able to create a set with eSata RAID

    Here is a map of the BSE 3 compatible with El Capitan.

    http://www.sonnettech.com/product/allegrousb3pcie4port.html

    USB 3.0 Mac Pro 2008 El Capitan

    Make sure that the card said it works with El Capitan. Some cards USB 3 is no longer with El Capitan as the CalDiget of first generation card.

    Internally the Mac can also use large HD depending on availability. However, there is a bug that first appeared in 10.8.4 and has not yet been set. To format a plu 2.2 to internal HD:

    -Use a disk utility of all Mac OS X older, including the 10.6 DVD (if your Mac can boot from it) or any of the installation DVD player or boost saved work.

    -Another solution is to move this drive in an external case and delete it there (assuming your case is modern enough to deal with readers more than 2.2 to.

    In addition,

    To sled mounting internal:

    The penetration of the screw depth for 'down-screw mount adjacent to the platters' on some readers from over 3 TB have been shortened. This may mean that the live sled down until they adjust and begin to compress the washers on the sled. If this is the case, your drive will not rest flat on the sled and do not breed with the connector backplane without additional adjustment.

  • Bug trying to create the link with the Cyrillic characters in URL

    I'm transforming words in my text on the links, but with Cyrillic characters in their URL (such as https://en.wiktionary.org/wiki/ хорошо). The problem is that, depending on how create the link, the page refuses to accept the URL.

    It's my preferred method (which accepts not the Pages):

    1. Write or select the text to be transformed into link;
    2. Press cmd + k;
    3. Paste the URL (https://en.wiktionary.org/wiki/ хорошо) in the field;
    4. Hit enter or click out;
    5. When I check the link, it is www.apple.com.

    The strange is that other methods work very well.

    1 against nature (accepts Pages):

    1. Delete my word;
    2. In its place, paste the URL (https://en.wiktionary.org/wiki/ хорошо);
    3. Hit the space bar (a link is created automatically with the correct URL);
    4. Edit the link that is created and change its text;
    5. When I check the link, he kept correct.

    2 against nature (accepts Pages):

    1. Write or select the text to be transformed into link;
    2. Press cmd + k;
    3. Find a way to build a version with my URL (https://en.wiktionary.org/wiki/%D1%85%D0%BE%D1%80%D0%BE%D1%88%D0%BE) escape sequence;
    4. Paste the URL with escape sequence in link field;
    5. Hit enter or click out;
    6. When I check the link, ironically, is хорошо https://en.wiktionary.org/wiki/.

    To stretch more:

    1. Editing a link created successfully (with any success methods above);
    2. Changed its URL (from хорошо https://en.wiktionary.org/wiki/ to https://en.wiktionary.org/wiki/ плохо)
    3. Hit enter or click out;
    4. When I check the link, it's still хорошо https://en.wiktionary.org/wiki/;
    5. Finally edited and changed its URL still once, now remove the Cyrillic (https://en.wiktionary.org/wiki);
    6. Press enter, click out and he finally accepted the URL.

    Pages seems to be denying the creation of links with the URL that contains Cyrillic characters (only?), but exclusively through his little creation of link popup. I think it's a simple problem, but I'm sure it's very annoying.

    Everyone knows the same?

    Cyrillic characters in the range of table encoding UTF-8 code points u + 0400 - u + 04 FF are represented by two bytes. These people must be encoded as a percentage (read the two paragraphs of the current standard of article), as the Pages v5.6.2 will convert automatically URI to this encoding for you in the link Inspector. It will simply ignore what it considers incorrect URI links, they are Cyrillic, or even English.

    Use what is easier for you, and that Pages v5.6.2 accepts.

  • How can I connect my camera to the pc with my USB cable

    312

    Connect the cable to a USB port on a PC with the iPhone connected to the other end of the USB cable.

  • OfficeJet 6500 connects to the computer with a usb cable.

    He has connected with a usb cable attached with no problems at all, but it has just stopped working suddenly. There is no error message, it does not simply read the printer any port it is connected to. The printer itself seems to work fine - I can make copies with her, and there is no problem I know with the computer. I tried to install wireless, but there need to be connected all first and I tried to buy a new usb cable, but it did make a difference. I'm on a PC - a Compaq laptop. Any suggestions would be greatly appreciated.

    A few ideas:

    1. do not go through a USB hub, plug directly into a port on your PC.

    2. make sure that the USB cable is plugged into the appropriate to the back of the printer port (it will come indeed in the Ethernet port, but obviously will not work here).

    3 restart the printer and the PC.

  • What does that say "automation server can't create the object" with undefined is null or not an object

    I get these pop ups on an application I have to access it through a company VPN

    Hello charliedoodle,

    Given that the application tries to reach a Web site through the VPN to your business, you should check with your integrated personnel.
    They may have a problem on the server, or may have set a new strategy group. We would not be able to help with this issue.

    However, you can watch the following article which addresses the error message you receive.
    Click the number of the KB article to revise article.
    KB Article ID: 323885 -error message in Visual Studio: "Automation server cannot create the object.

    I hope this helps.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • problem of traffic flow with tunnel created the network with a tunnel to a VPN concentrator

    Hi, I worked with Cisco and the seller for 2 weeks on this.II am hoping that what we are witnessing will ring a Bell with someone.

    Some basic information:

    I work at a seller who needs from one site to the other tunnel.  There are currently 1 site to another with the seller using a Juniper SSG, which works without incident in my system.  I'm transitioning to routers Cisco 2811 and put in place a new tunnel with the seller for the 2800 uses a different public ip address in my address range.  So my network has 2 tunnels with the provider that uses a Cisco VPN concentrator.  The hosts behind the tunnel use 20x.x.x.x public IP addresses.

    My Cisco router will create a tunnel, but I can't not to hosts on the network of the provider through the Cisco 2811, but I can't get through the tunnel of Juniper.  The seller sees my packages and provider host meets them and sends them to the tunnel.  They never reach the external interface on my Cisco router.

    I'm from the external interface so that my endpoint and the peers are the same IP address.  (note, I tried to do a static NAT and have an address of tunnel and my different host to the same result.)  Cisco has confirmed that I do have 2 addresses different and this configuration was a success with the creation of another successful tunnels toa different network.)

    I tested this configuration on a network of transit area before moving the router to the production network and my Cisco 2811 has managed to create the tunnel and ping the inside host.  Once we moved the router at camp, we can no longer ping on the host behind the seller tunnel.   The seller assured me that the tunnel setting is exactly the same, and he sees his host to send traffic to the tunnel.  The seller seems well versed with the VPN concentrator and manages connections for many customers successfully.

    The seller has a second VPN concentrator on a separate network and I can connect to this VPN concentrator with success of the Cisco 2811 who is having problems with the hub, which has also a tunnel with Gin.

    Here is what we have done so far:

    (1) confirm the config with the help of Cisco 2811.  The tunnel is up.  SH cyrpto ipa wristwatch tunnel upward.
    (2) turn on Nat - T side of the tunnel VPN landscapers
    (3) confirm that the traffic flows properly a tunnel on another network (which would indicate that the Cisco config is ok)
    (4) successfully, tunnel and reach a different configuration hosting
    (5) to confirm all the settings of tunnel with the seller
    (6) the seller confirmed that his side host has no way and that it points to the default gateway
    (7) to rebuild the tunnel from scratch
    8) confirm with our ISP that no way divert traffic elsewhere.  My gateway lSP sees my directly connected external address.
    (9) confirm that the ACL matches with the seller
    (10) I can't get the Juniper because he is in production and in constant use

    Is there a known issue with the help of a VPN concentrator to connect to 2 tunnels on the same 28 network range?

    Options or ideas are welcome.  I had countless sessions with Cisco webex, but do not have access to the hub of the seller.  I can forward suggestions.

    Here's a code

    crypto ISAKMP policy 1
    BA 3des
    md5 hash
    preshared authentication
    Group 2
    !
    crypto ISAKMP policy 2
    BA 3des
    preshared authentication
    Group 2

    Crypto ipsec transform-set mytrans aes - esp esp-sha-hmac

    Crypto-map dynamic dynmap 30
    Set transform-set RIGHT

    ISAKMP crypto key address No.-xauth

    interface FastEthernet0/0
    Description $ETH-LAN$$ETH-SW-LAUNCH$$INTF-INFO-FE $ 0/0
    IP 255.255.255.240
    IP access-group 107 to
    IP access-group out 106
    NAT outside IP
    IP virtual-reassembly
    route IP cache flow
    automatic duplex
    automatic speed
    crypto mymap map

    logging of access lists (applied outside to get an idea of what will happen.  No esp traffic happens, he has never hits)

    allowed access list 106 esp host host newspaper
    106 ip access list allow a whole
    allowed access list 107 esp host host Journal
    access-list 107 permit ip host host Journal

    access-list 107 permit ip host host Journal
    107 ip access list allow a whole

    Crypto isa HS her
    IPv4 Crypto ISAKMP Security Association
    status of DST CBC State conn-id slot
      QM_IDLE ASSETS 0 1010

    "Mymap" ipsec-isakmp crypto map 1
    Peer =.
    Extend the 116 IP access list
    access - list 116 permit ip host host (which is a public IP address))
    Current counterpart:
    Life safety association: 4608000 kilobytes / 2800 seconds
    PFS (Y/N): N
    Transform sets = {}
    myTrans,
    }

    OK - so I have messed around the lab for 20 minutes and came up with the below (ip are IP test:-)

    (4) ip nat pool crypto-nat 10.1.1.1 10.1.1.1 prefix length 30 <> it comes to the new address of NAT

    !
    (1) ip nat inside source list 102 interface FastEthernet0/0 overload <> it comes to the interface by default NAT

    !
    IP nat inside source map route overload of crypto-nat of crypto-nat pool <> it is the policy of the NAT function

    !

    (6) access-list 101 permit ip 172.16.1.0 0.0.0.255 172.16.2.0 0.0.0.255 <> defines the IP source and destination traffic

    !

    (2) access-list 102 deny ip 172.16.1.0 0.0.0.255 172.16.2.0 0.0.0.255 <> does not NAT the normal communication

    (3) access-list 102 deny ip 10.1.1.1 host 172.16.2.0 0.0.0.255 <> does not re - NAT NAT

    (1) access-list 102 permit ip 172.16.1.0 0.0.0.255 any <> allows everyone else to use the IP Address of the interface for NAT

    !

    (5) crypto-nat route-map permit 5 <> condition for the specific required NAT
    corresponds to the IP 101 <> game of traffic source and destination IP must be NAT'td

    (7) access list 103 permit ip 10.1.1.1 host 172.16.2.0 0.0.0.255 <> crypto acl

    Then, how the works above, when a package with the what IP 172.16.1.0/24 source wants to leave the router to connect to google, say the source will change to IP interface (1).  When 172.16.1.0/24 wants to talk to172.16.2.0/24, it does not get translated (2).  When the remote end traffic equaled the following clause of NAT - the already NAT'td IP will not be affected again (3) when a host 172.16.1.0/24 wants to communicate with 172.16.2.20/24 we need a NAT NAT specific pool is required (4).  We must define a method of specific traffic to apply the NAT with a roadmap (5) which applies only when the specific traffic (6), then simply define the interesting traffic to the VPN to initiate and enable comms (7) corresponding

  • Create the user with privileges only data entry.

    Hello guys,.

    A very basic question. I created the request of APEX, well obviously the user with whom I created this application has developer access, now I want to create a user who is able to see the developed application, I tried to find the user options, but could not.  Someone can help me to find the option, I need to follow, so that the newly created user is only able to enter data into forms and run reports and should not be able to make changes in the application developed.

    Concerning

    Faisal Niazi says:

    A very basic question. I created the request of APEX, well obviously the user with whom I created this application has developer access, now I want to create a user who is able to see the developed application, I tried to find the user options, but could not.  Someone can help me to find the option, I need to follow, so that the newly created user is only able to enter data into forms and run reports and should not be able to make changes in the application developed.

    Create 'end users' by selecting No for the user is an administrator of the workspace and the user is a developer account privilege options create new user accounts. These users connect to the APEX Application Builder. It can be given direct access to a request by specifying the ID of the application or alias to the URL:

    apex.oracle.com/pls/apex/f?p=

    or

    apex.oracle.com/pls/apex/f?p=

    Using an alias for the application is recommended.

    To restrict user access to pages, components and specific applications, create authorisation schemes and the apply to the application level.

  • Create the cluster with existing Virtual Machines

    This will seem like an easy question, but I have 3 5.0 ESXi hosts managed by vCenter. We recently purchased a SAN and I would like to set up a cluster, can I do it with running on the existing VMS host computers and then to migrate in the SAN that I have create the cluster?

    If the hosts and the BIOS settings are the same there should not be a problem with placing them in a cluster. Displacement of that virtual machine to the San can be made as soon as the hosts are connected to him, it is not the members of classes.

    André

Maybe you are looking for

  • Connection ebay Mac gives a Page fault does not

    Try to log in to ebay gives this error with Mac Firefox 15.0.1OS X 10.7.4 not this problem with the Safari browser The eBay page or feature you are trying to access does not.Please, try the options below: Try to access the feature directly from the e

  • Help with alternative treatments

    I try to get a handel on parallel processes.  The attached VI, I started with the design of producer/consumer model (events).  I want to start two independent processes with two separate button pushes.  Each process works, but not independently.  The

  • Windows 7 64-bit UEFI boot USB

    Hello yesterday, I received my new PC. There are asus z87 gryphon UEFI BIOS ver 1707. I was assembled and tested before delivery for me. a test of the operating system was installed for testing and then removed before I got it. I bought this version

  • The evil delete call list have blackBerry Smartphones

    Can someone please help me if possible. Is there a way to delete the call list recent all at once instead of one by one. I have the curve 8330 with verizon. Thank you!

  • Update of Smartphones blackBerry 9860 OS unlocked (blank media) OS 7.1

    Hello I have BB 9860 with OS v7.0.0.353 and I want to upgrade to OS 7.1. It's unlocked phone and everytime I try to update the OS using Desktop Manager he said "There is no Blackberry Device Software Update" I'm sure OS7.1 is out and I can use it for