Need help in transmitting TV signals thru an IR Led via mydaq

Hi,
I currently have this project that uses mydaq to receive the TV remote signals and stored in a measurement file.
I have come to the stage where i can store the demodulated signal via IR receiver in a text file. However, I have difficulty in transmitting the signal thru the IR Led that is connected to ao1. I have already multiplied the stored waveform with a 38khz carrier frequency square wave. Can anyone help me on this?

What kind of problems are you having?  Do you get errors? Does the TV always switch to "I Love Lucy" reruns? What kind of amplifier/driver are you using for the LED? The myDAQ AO lines are limitied to 2 mA, which is at the low end for driving an LED.
Are you using the correct modulation scheme? The Philips RC-5 code, for example, would not be generated by multiplying a waveform by a carrier.  The myDAQ anaolog output is fast enough to generate this signal, but I do not know if the timing can be set to the exact frequency required.  The pulse is specified at 6.94 us.
Lynn

Similar Messages

  • Need help to get MIDI signal

    I just got Soundtrack Pro. I also just bought a Midiman Uno that is MIDI in and USB out. I plug my keyboard into that, and that into a USB hub that goes to my computer.
    Soundtrack recognizes the driver for the Uno, but Soundtrack isn't getting any signal level when I get it ready to record, or any time for that matter. What should I do?

    Soundtrack Pro is a audio-only app. You won't be able to record any midi data or playing soft synths with a midi controller. If you have built-in sounds in the keyboard hooked to the Uno, you won't be able to record those in STP because midi data is not audio (sound). Midi data are only numbers telling a synth which notes to play and how. If you want to record your keyboard audio out, you'll need an audio interface hooked to the audio outputs of your keyboard

  • I need help connecting to my wifi thru my wireless router at my house

    i recently bought a wireless router for my house. i got it working fine. then my husband connected his laptop to the router and now my ipad will not connect to wifi.

    You should probalby contact the maker of the router for suppot.

  • Need help setting up Pixma MX 860 on local network via wireless

    Ok, I'm at my wit's end here.
    I've spent the last two days trying to setup my printer with a connection to my wireless hub, and it simply refuses to work.
    I've tried under Win7 and Mac OS/X.
    Most recently, using Win7, I have the drivers installed, I have tried running 'ltdl-win-mx860-2_5_7-en.exe', and it sees the printer, then when it lists the access points, I see my access point.  I type in my password, and it says "Communicating with printer", then, after a few minutes, I get "The printer could not be connected to the specified access point."
    Please help me before I throw this printer through the window!
    AdvThanksance,
    -Mark
    PS  Yes, I have checked, double checked, triple checked my access point password.  That's not the problem.

    So you have a printer and wish to connect it to your network using wireless, right?
    I don't see what the Win 7 or OS-X boxes have to do with it?
    The connection you need to establish is between the printer and the Wi-Fi access point. Once that is established, everything else should flow.
    Start at the printer, it should lead you by the hand to connect to the wireless. Have you tried using the printer (not any computer) to connect to the wireless access point?
    Unless I am overlooking something else?
    regards,
    chmod

  • Need help setting up Airport Express A1084 in Windows 7 via Netgear WNDR4500 wireless router

    Hello All. I bought a used Airport Express A1084 off the net. Never had one before. My intention is to remotely control (via my iPhone using Apples Remote app or possibly XBMC) a "pc with music" and stream thru the AE connected to a boombox. I want to be able to take AE and boombox to the front yard, back yard, garage, or wherever my Netgear WNDR4500 will reach.
    So far I have hit the reset on the AE and while holding, plugged it in to power (still holding) until the green light blinked. I let it go. Waited for it to complete booting (slow blinking yellow/amber light). The AE did not show up in Airport Utility ver 5.6.1. I uninstalled that version and installed older Airport Utility ver 5.4.2. Same results. I power cycled the router, turned off the Norton 365 firewall, and still get nothing. At one point though, I walked away for a while (an hour or so), came back and saw the AE listed in the left window pane of Airport Utility. I thought maybe I just didn't wait long enough so I clicked Manual Setup and it started to read the AE but Errored 10057. I tried again and got same error. I refreshed and the AE was gone.
    Can someone tell me how to correct this so I can confirm I didn't buy a "brick"?
    Thanks in advance,
    Tom

    Just so you are aware, the A1084 AirPort Express is a 802.11b/g wireless router that can only operate on the 2.4 GHz band. Regardless, it can be configured to join the wireless network provided by the Netgear as long as that network is configured to be backwards compatible with 802.11g clients. However, in the long run for performance, you do NOT want any non-"n" wireless clients connecting to your Netgear's network.
    The 5.6.1 version of the AirPort Utility for Windows does not support the non-"n" version of the AirPort base stations. You would need to use an earlier version that will still run on Windows 7.
    One thing to try would be to temporarily connect the Express directly to your PC using an Ethernet cable, and then, try accessing it with the AirPort Utility. If you are still unable to do so, you may have gotten yourself a defective unit.

  • Need help removing a bunch of objects added at runtime via a timer

    Hi.  After adding an image to the stage, turning it into a Movie clip, and setting linkage in library to Export for Actionscript, I'm now using a timer to add a bunch of roses to the stage as a video plays.
    How can I get rid of all these clips once the video is over?
    Do I need to add all of them into an extra container and then just removeChild that container at the end?
    Or do I need to use something like getNumberOfChildren and then create a loop that removes them one by one?
    The clips (myRose) are fairly small and do not have any event listeners added to them.  I just use TweenMax to move them from top to bottom of the screen.
    I've pasted my code below.
    Thanks for any suggestions.
    public function roseTimer():void
                MonsterDebugger.trace(this, "in roseTimer");
                myRoseTimer = new Timer(1200, 52);
                myRoseTimer.addEventListener(TimerEvent.TIMER, createRose);
                myRoseTimer.start();
    private function createRose(event:TimerEvent):void
                MonsterDebugger.trace(this, "test create rose see if stop blinking one");
                MonsterDebugger.trace(this, "in createRose");
                var myRose:rose = new rose();
                var startX:int = (stage.stageWidth/8) + (Math.round (Math.random() * (stage.stageWidth*.75) ) );
                var makeSubtract:int;
                //Math.random()>.5 ? makeSubtract = 1 : makeSubtract = -1; //shorthand if statement
                var endX:int = startX + Math.random()*100*makeSubtract;
                if (endX<100)
                    endX +=100;
                if (endX> stage.stageWidth -100)
                    endX -=100;
                //MonsterDebugger.trace(this, "makeSubtract = " + makeSubtract + " and startX = " + startX + " and endX = " + endX + " and stage.stageWidth = " + stage.stageWidth);
                //var myScale:Number = 1 + (Math.random()*.3*makeSubtract);
                var startY:int = Math.round(Math.random()*100);
                var endY:int = stage.stageHeight - Math.round(Math.random()*175);
                var startRotation = Math.random()*360;
                var endRotation = Math.random()*360;
                myRose.x = startX;
                myRose.y = startY - 150;
                //TweenMax.fromTo(myRose, 5, {scaleX: myScale, scaleY: myScale, x:startX, y:startY, alpha: .4, rotationZ:endRotation}, {scaleX: myScale, scaleY: myScale, x:endX, y:endY, alpha:.9, rotationZ:endRotation});
                TweenMax.fromTo(myRose, 5, {x:startX, y:startY, alpha: 0, rotationZ:startRotation}, {x:endX, y:endY-75, alpha:.9, rotationZ:endRotation});
                //myRose.visible = true;
                //Gaia.api.getDepthContainer(Gaia.TOP).addChild(myRose);
                addChild(myRose);

    Hey Dave -
    If I add them to a container and simply removeChild the container, will that avoid any memory leaks/problems?
    Wasn't sure if that was just an issue when eventListeners were involved.
    Thanks

  • Need help - college student email receives won't go out via GMAIL / SMTP

    hello,
    my kid is just starting college and she called and said her email from bellsouth and the university (Via Gmail) is coming in, but when she sends it won't go out.
    says couldn't send on selected server, try another?
    She is connected to the web and can use web based email for now, but this is really weird. Anyone got any ideas?
    Thanks!

    Yes, I have SBC and my SMTP server is smtp.att.yahoo.com.
    Here's a page with the most popular mail setting for smtp http://www.simplehelp.net/2006/07/01/isp-mail-server-settings/
    In fact, here's a page where you can find out the time warner smtp setup. http://help.rr.com/AA/rrwho.aspx?ReturnUrl=%2fDefault.aspx
    Message was edited by: Donald Palmer

  • Need help!!! multi-tracks audio to quicktime via compressor

    I have a timeline in FinalCut Pro with 10 audio tracks. I want to do an uncompressed QuickTime and keep the 10 audio tracks seperated. How do I do that?

    In FCP, click anywhere on the timeline and type Command + 0 {zero} to open the Sequence Settings. Once they are open, click on the Audio Outputs Tab.
    Choose the number of outputs you want, and choose if they are Stereo Pairs or not. Click OK. You will get a warning that your audio device does not support ten tracks, click OK to dismiss it.
    Next, assign the tracks on the timeline to the correct output track. Control-click on the space above the lock symbol, and the track assignment drop down will appear. This instance shows the tracks being Stereo Pairs.
    Then export your Quicktime. If you want to change the video to uncompressed, you can export it with using File > Export > Using Quicktime Conversion. . . and set the video to uncompressed.
    Once you have exported the file, a quick way to check all the audio tracks are correct is to import that file you just created back into FCP, and open it in the viewer, you will see all the tabs for the attached audio tracks.
    Be sure to go back and normal the audio settings in your sequence when you are done exporting.
    MtD

  • Gps problem with 5.0.1 NEED HELP

    Hello everyone.
    My Iphone 3gs New bootrom is updated to ios 5.0.1And now my gps has hugh problems.
    if i start navigon of tom tom he find me for a sec then iam gone and he cant find it.
    tried reinstalling it, network reinstalled, ios 5.0.1 reinstalled jailbreaked it and unjailbreak it.
    Nothing works, when i cal my carrier t-mobile they say send it to us and you pay fore the cost but iam not going to pay fore something i dindt broke right?
    read it in several forums and its a world wide problem. So called apple in holland the just say cal your carrier. Apple this stinks so what are you going to do?
    what can i do ??
    NEED HELP

    I think your iPad is a candidate for restoring via recovery mode. Read this article for instructions.
    http://support.apple.com/kb/ht1808

  • NEED HELP TO SET UP SMALL NETWORK - WIRELESS SIGNAL FROM NOVATEL U760 USB

    Hello -
    I need help setting up a small network in my new home in Florida, which has no wired broadband capability - not cable, not dsl. My options are satellite (which I'd like to avoid) or wireless broadband via Millenicom (or now Virgin Mobile) using their Novatel U760 USB stick.
    Here are the network components - someone please tell me how to set this up:
    PC #1 (has wireless card, but I've connected it by ethernet to the router)
    PC #2 (no wireless card; connected via ethernet to router)
    MACBOOK, 1 1/2 years old (2.1 GHz Intel Core 2 Duo, 4 gigs RAM), running OS 10.58, connected wirelessly to router.
    AIRPORT EXTREME BASE STATION, Model A1143.
    I'm not thrilled about using a wireless 3G signal as my primary one, (sprint network, claims 600 - 1400 kbps speed), but it costs 1/2 to 1/3 of what a slightly faster satellite signal would.
    I have not ordered this service yet. Before I do, I'd like a clear understanding that I can, in fact, set up my simple network, which I'd probably do the same as it's now configured with cable broadband - both PC's plug via
    ethernet into the Airport Extreme router, the MacBook connects wirelessly - AND,
    my question is this:
    Can I plug the wireless card - a Novatel U760 USB-stick device - straight into that USB slot in the Airport Extreme base station and will it automatically recognize that device?
    Or, do I have to plug it into the MacBook and somehow share that wireless signal between the 2 PC's (only 1 of which has a wireless card, so I'd have to get a card for PC #2)?
    And help anyone can provide will be much appreciated!
    Thanks,
    Em

    from the Airport FAQ #14:
    "Question: Can I connect my Soundsticks or other USB speakers to AirPort Express?
    Answer: No. The USB port is for connecting a printer, not for other devices."
    Im assuming other devices include USB modems.
    So, I would say your cheaper route would be to get a second wireless card and just share your internet connection from one of your PC.

  • My Iphone 4s is not being recognized by itunes at all. There is no connection, the cable i am using is not the problem because itunes will recognize my Ipad2 and Ipod thru it. I have the most current itunes and phone software I need help!

    My Ihone 4s is not being recognized by Itunes.There seems to be  no connection, the cable i am using is not the problem because itunes will recognize my Ipad2 and Ipod thru it. I have the most current itunes and phone software I need help!

    Thank you allan this worked, the final thing was updating the driver softwar for the AMDS in device manager. Thanks again.

  • Need help Phone signal going on and off

    I need help with my Z3, I just installed the new update (23.0.1.A.5.77) and the phone signal won't connect. It keeps fluctuating off and on. It was working perfectly fine before the update. I even did a reset but its still the same.

    Hi Flexatron,
    Welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    Did you by chance try simply removing the SIM card from the handset for around 30 seconds and putting it back in and restarting.
    This could be a simple communications issue with the SIM.
    let us know how you get on.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • I have a Mac Book Pro 17 which starts but the screen is too dark to see. I have an external monitor connected but no signal. I need help. Thanks.

    I have Mac Book Pro 17 which starts but the display is too dark to see. I have separate display connected, but no signal to it. I need help. Thanks.

    The tv is a extended display on your mac like a second moitor you want to mirror them (same thing on both)
    This should help you

  • NO one answered me! Need help: Iphone 5 doesn't search for  a signal!

    Everytime I am in library, my cellphone doesn't have a signal. So my phone only gets wifi.
    When I leave the library, my iPhone 5 doesn't search for a signal. It shows me "no service" until I turn on/off the airplane mode.
    Then the phone starts to search for signal.
    Is this my phone problem or the carrier?
    Should I get a replacement?
    Thank you

    i have similar problem with my new iPhone and my old iPhone 4 as I thought if I get the new handset and new sim. this problem would go away, BUT still have a big problem with connection as if i move slightly in one room like as if i move my head to side to grab a pen the signals goes and thats endes my phone call and this is near anoth everytime i call. just been away to spain and the phone was perfect not a singal fault even my 3g was fast and didnt loose signal. so wen i come off the plane in england same again.no signal takes ages to connect to a new call after. i need help fast as this is my work phone and i am telling customers to ring landline. needs sort asa. apple can you help as this isn't the 02 connection as this is new phone and sim, and even if i get another sim still the same. regards matt 

  • Need help with a currently "in-use" form we want to switch to Adobes hosting service

    Hi, I am in desperate need of help with some issues concerning several forms which we currently use a paid third party (not Adobe) to host and "re-distribute through email"...Somehow I got charged $14.95 for YOUR service, (signed up for a trial, but never used it)..and now I am paying for a year of use of the similar service which Adobe is in control of.  I might want to port my form distribution through Adobe in the hopes of reducing the errors, problems and hassles my customers are experiencing when some of them push our  "submit button". (and I guess I am familiar with these somewhat from reading what IS available in here, and I also know that, Adobe is working to alleviate some of these " submit"  issues, so let's don't start by going backwards, here) I need solutions now for my issues or I can leave it as is, If Adobe's solution will be no better for my end users...
    We used FormsCentral to code these forms and it works for the most part (if the end-user can co-operate, and thats iffy, sometimes), but I need help with how to make it go through your servers (and not the third party folks we use now), Not being cruel or racist here, but your over the phone "support techs" are about horrible & I cannot understand them or work with any of them, so I would definitely need someone who speaks English and can understand the nuances of programming these forms, to please contact me back. (Sorry, but both those attributes will be required to be able to help me, so, no "newbie-interns" or first week trainees are gonna cut it).... If you have anyone who fits the bill on those items and would be willing to help us, please contact me back at your earliest convenience. If we have to communicate here, I will do that & I can submit whatever we need to & to whoever we need to.
    I need to get this right and working for the majority of my users and on any platform and OS.
    You may certainly call me to talk about this, and I have given my number numerous times to your (expletive deleted) time wasting - recording message thingy. So, If it's not available look it up under [email protected]
    (and you will probably get right to me, unlike my and I'm sure most other folks',  "Adobe phone-in experiences")
    Thank You,
    Michael Corman
    VinylCouture
    Phenix City, Alabama  36869

    Well, thanks for writing back...just so you know...I started using Adobe products in 1987, ...yeah...back then...like Illustrator 1 & 9" B&W Macs ...John Warnock's Helvetica's....stuff like that...8.5 x 11 LaserWriters...all that good stuff...I still have some of it working on a mac...much of it was stuff I bought. some stuff I did not...I'm not a big fan of this "cloud" thing Adobe has foisted upon the creatives of the world...which I'm sure you can tell...but the functionality and usefulness of your software can not be disputed, so feel free to do whatever we will continue to pay for, ...I am very impressed with CC PS on the 64 bit PC and perhaps I will end up paying you the stipend that you demand for the other services.
    So  I guess that brings us to our problem.. a few years back and at the height of the recession and near bankruptcy myself,  I was damn lucky and hit on something and began a small arts and crafts supply service to sell my products online to a very "niche market" ...I had a unique product and still sell that product (plus others) online...My website is www.vinylcouture.com...Strange? Yes...but there is a market it seems, for everything now, and this is the market I service...Catagorically, these are 99%+ women that use these "adhesive, sticky backed vinyl products"  to make different "craft items" that are just way too various and numerous to go into... generally older women, women who are computer illiterate for the most part...and all this is irrelevant to my problem, but I want you to have every bit of background on this and especially the demographic we are dealing with, so we can get right to the meat of the problem.
    OK...So about two years ago, I decided to offer a "plain sheet" product of a plain colored "stick back" vinyl... it is available in multiple quantities of packs ( like 5 pieces, 10 pieces, 15 pieces, in a packi  & so on)...and if you are still on my site.. go to any  "GO RIGHT TO OUR ORDER PAGE"  button, scroll down a little...and then to the "PLAIN VINYL" section...you will see the Weebly website order process.) You can back out from here, I think,..but, anyway this product is available in 63 colors + or - a few. So then the problem is,  how do they select their individual colors within that (whatever) pack?... .
    So my initial idea was to enable a "selection form" for these "colors" that would be transmitted to me via email as 'part" of the "order process".. We tried getting our customers to submit a  " a list" ( something my competitiors still do, lol, poor bastards)......but that..is just unbelievable..I can't even begin to tell you what a freakin' nightmare that was...these people cannot even count to 10, much less any higher... figuring out what colors to list and send me... well, lets just say, it wasn't working......I had to figure out a better way...Something had to be done.
    So after thinking this all out,  and yeah...due to my total ignorance, i figured that we could make a form with Live Cycle Designer (Now Forms Central)...(back then something that was bundled with Adobe Acrobat Pro), I believe, and thats what this thing was authored in... and it would be all good...LOL!
    Well not so simple...as you well know, Adobe Acrobat would NOT LET YOU EMAIL anything from itself.....it just wouldn't work (and I know why, and all that hooey), but not being one to take NO for answer,.I started looking for a way to make my little gizmo work.. So I found this company that said they can "hijack" (re-direct actually) the request to email, bypass the wah-wah, and re-transmit it to the proper parties.....for less than $100 a year,  I think...its called http://pdf-fillableforms.com/.
    A nice gentleman named Joseph Silva helped us program the thing to go to his servers and back out. Please dont hassle them...I need them...for now..it basically does work...try it...you should get back a copy of the form that you filled out...good luck however,  if you're on MAC OSX or similar...
    I have included a copy of both of our forms (and feel free to fill it out and play with it)...just put test somewhere on it...(and you must include YOUR email or it will balk)..they are supposed to be mostly identical, except one seems to be twice as large....generating a 1.7 meg file upon submission, while the other one only generates a 600K file or so...thats another issue for another day or maybe you can advise on that also...
    OK so far so good......In our shop, once Grandma buys a 10 pack (or whatever), Only then she gets to the link on her receipt page ro the relevant "selection form" ,(this prevents "Filling and Sending"  with "no order" and "no payment", another early problem we had)... which they can click on and it will usually download and open up on their device if all goes well...Then our little form is supposed to be fillable and is supposed to ADD UP all the quantities, so grandma knows how many she is buying and so forth right on the fly,  and even while she changes her mind..., and IT'S LARGE so grandma can see it, and then it TOTALS it all up for them, ( cause remember, they can NOT add)..,  except there is a programming bug (mouse-click should be a mouse-up probably or something..) which makes you click in the blank spaces to get to a correct TOTAL...about 70-80% of our customers can enable all these features and usually the process completes without problems for them especially on PC's running Windows OS and Acrobat Reader X or XI...at least for most... Unfortunately it is still not the "seamless process" I would like or had envisioned for the other folks out there that do have trouble using our form....  Many folks report to us the following issues that we know of.  First of all it takes too much time to load up...We know its HUGE...is there anyway that you can see, to streamline this thing? I would love for it to be more compact...this really helps on the phones and pads as I'm sure you well know.
    Some just tell us,"it WON'T work"....I believe this is because they are totally out of it and dont even have Adobe Reader on their machine, & don't know how to get it ( yes, we provide the links).....or it's some ancient version....no one can stop this one...
    It almost always generates some kind ( at least one time)  of "error message" which we do warn them about..., telling one,  basically that "Acrobat doesnt even like this happening at all, and it could be detrimental to ones computer files", blah-blah...(this freaks grandma out really bad)...& usually they end up not even trying to send it...  and then I get calls that even you wouldn't believe...& If they DO nut up and push the Red "Submit Form" button, it will usually send the thing to us (and also back to them at the "required email address" they furnished on the form, thats what the folks at the "fillable forms place" do) so, if it's performing it's functions, why it is having to complain?. What are we doing wrong?....and how can I fix it?...Will re-compiling it or saving it as a newer version of "FormsCentral" correct any of these problems ?
    Ok, so that should keep you busy for a minute and we can start out with those problems...but the next thing is, how can I take advantage of YOUR re-direct & hosting services?, And will it get rid of the error messages, and the slowness, and the iOS incompatibilities ? (amazingly,  the last iOS Reader version worked almost OK.. but the newest version doesnt seem to work with my form on my iphone4)  If it will enable any version of the iOS to send my form correctly and more transparently, then it might be worth the money...$14.95 a MONTH you say. hmmmmm...Better be good.
    Another problem is, that I really don't need 5000 forms a month submitted. I think its like 70-100 or less....Got any plans for that?  Maybe I'm just not BIG ENOUGH to use Adobe's services, however in this case, I really don't care whose I do use as long as the product works most correctly for my customers as well as us. Like I said, If I'm doing the best I can, I won't change anything, and still use the other third party, If Adobe has a better solution, then i'm all for that as well. In the meantime, Thanks for any help you can provide on this...
    Michael Corman
    VinylCouture.com
    (706) 326-7911

Maybe you are looking for

  • VHS to iMovie 09

    I used EyeTV Hybrid to capture the VHS contents to disk. (The resulting .eyetv file plays fine within EyeTV.) I dragged the .mpg file from within the .eyetv package into MPEG Streamclip. (The file plays fine within MPEG Streamclip at this point.) I u

  • VM Server stuck in "Error" state - cannot start or stop any VMs

    I have Oracle VM Server 3.0.2, VM Manager 3.0.2, and have a VM server stuck in an "Error" state. I've gone into all the Event tabs for the server + guests and acknowledged all the errors, but it's still in this state. When I try to start a VM for exa

  • Iphoto library and time machine backup on a same drive ?

    Hi I want to free up some space on my MBP so I am planning to move my iphoto library from MBP to an external hard drive. Can I also use the same external drive to keep Time Machine backups ? In short if I buy a large size external drive can I use it

  • Regarding workflow to get manager rule 168

    Hello HR Gurus, Well I am an abaper . while testing the rule 168 (to get the superior of person in workflow ) I can get the superior of person by passing Extended object id = Position and object type = ‘S’ but when I try to find the superior by passi

  • DWM + useless gap patch not creating horizontal gaps

    Can anyone give me a hand with the uselessgap patch? I'm using version 5.9 found here: dwm.suckless.org/patches/uselessgap. I've applied it but it doesn't seem to be making any gaps horizontally. This is the only patch I've installed thus far. Here i