Flash and actionscript to control multiple LEDs

Hello:
I was wondering if any one in this forum would be willing to either share a good example of an actionscriopt that runs two or more LEDs each with its own button. Or if you wish to sell me an actionscript code that would communicate with arduino uno. I can use PayPal to pay for the service.
If it easy to do I would like to when pushing one of the 6 button (6 buttons all) would make an LED come ON and stay ON for a selecte number of seconds. Each LED with its own button to come ON (HIGH). Then if it is doable to have a 7th button that would make all 6 come ON in a sequential way (one after the other after a number of seconds).  Also, if possible allow the user to change the intensity of the lit LED. I know for some of you actionscript is really easy but I am new to all of this. If someone is willing to share a code that I could easily modify to my needs it would be immensily appreciated. I would even more than happy to send a monitary gift, using Paypal. 
Thanks in advance and any help will be truly appreciated. Ocin1

It's not hard for Flash to communicate with Arduino. Just Google 'Arduino AS3' and you'll find good tutorials. Here's one that should have what you need:
http://arduino.cc/playground/Interfacing/Flash

Similar Messages

  • Write to and read from TCP/IP address using Flash and Actionscript

    Hi,
    I'm a bit of a newbie with flash and Actionscript. I have been programming for a number of years now, but I have only been messing around with flash since CS4. I have CS5 now, and need a bit of help. I have a wireless device that I have made, I wish to make a flash program (potentially adapted to iPhone or Android) that sends and receives data (in the form of Word or Byte sized variables) from an IP address assigned to the device. Is this achievable?
    Please help. Thank you

    bump
    Please! anyone! HELP

  • AJAX and Actionscript to Control FLV Playback Skin

    I have AJAX running on an application that opens up a new panel displaying a flash video. The flash video uses one of the FLV Playback skins. When I play the video on the panel, everything is fine. But, when I close the panel with the javascript-enabled button, the video would still play even though the panel and video are "gone" from the html page.
    I was looking into using javascript to talk to actionscript to control the FLV Playback skin's stop function so that when the close panel function is activated, the video play's stop function would be called. How do I find out the path to and the name of the stop function inside the playback skin? Is it possible to call the stop function inside the FLV Playback skin? Or, would it be easier to create my own video controller?
    I hope this is clear. Any help is appreciated. Thanks.

    I don't clear your questions
    Regards,
    nha khoa
    nhua
    gia cong
    nhua
    gia cong chi
    tiet
    khuon mau
    thiet ke web
    do dung cho be

  • The future of Flash and Actionscript 3.0, need your advise

    Hello friends, currently I'm learning Actionscript 3.0, but have been reading a lot about Adobe disscontinuing Flash in the near future in support of HTML 5. Now, what I want to know is this: should I continue my education in AS3.0, or am I wasting my time?
    If I am wasting my time, what language should I learn that will give me the ability to make robust websites? Java???
    And is the "Flash" program gonna be completely obsolete? I'm somewhat confused on this subject and want to work effeciently.
    Please, need advise from someone who really knows, so that I can continue my education in the right path.
    Recommendations to links, books, videos would be greatly appreciated that you might think can help me in this matter.
    Thank you friends:)

    You should list all of the sources you're indicating you have been reading so that anyone can have a better idea of the potential validity of what you say you are reading.
    As far as AS3 goes, you should continue your studies... there is a future despite the fact that AS3 will probably be replaced with AS4 and on as time go by.  And if web design is in your future you should follow on with learning all you can relevant to html5/javascript/css so that you have the skills needed for those as well.
    Here's s link to something from the folks who know better than anyone that might help you get a flavor of the plans with respect to Flash/AS3+...
    http://www.adobe.com/devnet/flashplatform/whitepapers/roadmap.html

  • Flash and Standards

    I'm a big promoter of web standards when it comes to (X)HTML
    and CSS. I like to write meaningful code that will work across each
    browser/platform.
    This is where the question comes in: If I was to learn Flash
    and Actionscript, where would I start? I would want my code to be
    as meaningful and 'standards' promoting as possible.
    Does anyone have some beginners resources to learn standards
    based flash? Thanks in advance.

    On 2007-04-05 07:56:23 -0700, "Mike Vitoroulis"
    <[email protected]> said:
    > I'm a big promoter of web standards when it comes to
    (X)HTML and CSS. I like to
    > write meaningful code that will work across each
    platform.
    >
    > This is where the question comes in: If I was to learn
    Flash and Actionscript,
    > where would I start? I would want my code to be as
    meaningful and 'standards'
    > promoting as possible.
    >
    > Does anyone have some beginners resources to learn
    standards based flash?
    > Thanks in advance.
    There are not necessarily standards in Actionscript. In order
    to have
    standards, generally you need two or more similar products
    (like
    browsers) that are competing in the market place. Instead,
    like most
    programming, there are design patterns. If you want to write
    robust
    code you should be taking advantage of Actionscript 2.0 at
    least. And
    to leverage all of it's capabilities you should try to start
    writing
    classes.
    Here is a book I recommend. It is a really good one if you
    have any
    sort of programming background.
    http://www.friendsofed.com/book.html?isbn=1590595947

  • How to make a keyboard navigating multiple choice list in Flash and control it through actionscript?

    i am making an rpg style game in actionscript 3.0 and i want to make a multiple choice list. I know how to make the list with buttons and how to control it. My question is, how do you make a list that can be navigated using the keyborad arrows? What i am after is being able to hit up, and down to highlight the buttons and enter to chose the button.

    You'll need to make the buttons as movieclips so that you can control which display state they are in (highlighted versus not).
    Then you need to set up a listener for the keyboard keys so that you can have the selected button change and the execute if the Enter is pressed.  Here is a basic setup for a keyboard listener that shows how to detect the three keys you mentioned...
    stage.addEventListener(KeyboardEvent.KEY_DOWN,keyIsDown);
    function keyIsDown(e:KeyboardEvent):void  {
             if (e.keyCode == Keyboard.DOWN) {
                     trace("DOWN");
             } else if (e.keyCode == Keyboard.UP) {
                     trace("UP");
             } else if (e.keyCode == Keyboard.ENTER) {
                     trace("ENTER");

  • Stop and Play All Child MovieClips in Flash with Actionscript 3.0

    I am stuck with the ActionScript here. I have a very complex animated flash movie for eLearning. These contain around 10 to 15 frames. In each frame I am having multiple movie clip symbols. The animation has been created using a blend of scripting and also normal flash animation.
    Now I want to create pause and play functionality for the entire movie. I was able to create the pause function but when i try to play the movie it behaves very strange.
    I was able to develop the pause functionality by refering to the below mentioned links:
    http://www.unfocus.com/2009/12/07/stop-all-child-movieclips-in-flash-with-actionscript-3-0 /
    http://www.curiousfind.com/blog/174
    Any help in this regard is highly appreciated as i am approaching a deadline.
    I am pasting the code below:
    import flash.display.MovieClip;
    import flash.display.DisplayObjectContainer;
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    import fl.transitions.*;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    import flash.events.Event;
    import flash.events.MouseEvent;
    stop();
    // function to stop all movieclips
    function stopAll(content:DisplayObjectContainer):void
        if (content is MovieClip)
            (content as MovieClip).stop();
        if (content.numChildren)
            var child:DisplayObjectContainer;
            for (var i:int, n:int = content.numChildren; i < n; ++i)
                if (content.getChildAt(i) is DisplayObjectContainer)
                    child = content.getChildAt(i) as DisplayObjectContainer;
                    if (child.numChildren)
                        stopAll(child);
                    else if (child is MovieClip)
                        (child as MovieClip).stop();
    // function to play all movieclips
    function playAll(content:DisplayObjectContainer):void
        if (content is MovieClip)
            var movieClip:MovieClip = content as MovieClip;
            if (movieClip.currentFrame < movieClip.totalFrames) // if the main timeline has reached the end, don't play it
       movieClip.gotoAndPlay(currentFrame);
        if (content.numChildren)
            var child:DisplayObjectContainer;
            var n:int = content.numChildren;
            for (var i:int = 0; i < n; i++)
                if (content.getChildAt(i) is DisplayObjectContainer)
                    child = content.getChildAt(i) as DisplayObjectContainer;
                    if (child.numChildren)
                        playAll(child);
                    else if (child is MovieClip)
                        var childMovieClip:MovieClip = child as MovieClip;
                        if (childMovieClip.currentFrame < childMovieClip.totalFrames)
          //childMovieClip.play();
          childMovieClip.play();
    function resetMovieClip(movieClip:MovieClip):MovieClip
        var sourceClass:Class = movieClip.constructor;
        var resetMovieClip:MovieClip = new sourceClass();
        return resetMovieClip;
    pauseBtn.addEventListener(MouseEvent.CLICK, onClickStop_1);
    function onClickStop_1(evt:MouseEvent):void
    MovieClip(root).stopAll(this);
    myTimer.stop();
    playBtn.addEventListener(MouseEvent.CLICK, onClickPlay_1);
    function onClickPlay_1(evt:MouseEvent):void
    MovieClip(root).playAll(this);
    myTimer.start();
    Other code which helps in animating the movie and other functionalities are as pasted below:
    stage.addEventListener(Event.RESIZE, mascot);
    function mascot():void {
    // Defining variables
    var mc1:MovieClip = this.mascotAni;
    var sw:Number = stage.stageWidth;
    var sh:Number = stage.stageHeight;
    // resizing movieclip
    mc1.width = sw/3;
    mc1.height = sh/3;
    // positioning mc
    mc1.x = (stage.stageWidth/2)-(mc1.width/2);
    mc1.y = (stage.stageHeight/2)-(mc1.height/2);
    // keeps the mc1 proportional
    mc1.scaleX <= mc1.scaleY ? (mc1.scaleX = mc1.scaleY) : (mc1.scaleY = mc1.scaleX);
    stage.removeEventListener(Event.RESIZE, mascot);
    mascot();
    this.mascotAni.y = 100;
    function mascotReset():void
    // Defining variables
    var mc1:MovieClip = this.mascotAni;
    stage.removeEventListener(Event.RESIZE, mascot);
    mc1.width = 113.45;
    mc1.height = 153.85;
    mc1.x = (stage.stageWidth/2)-(mc1.width/2);
    mc1.y = (stage.stageHeight/2)-(mc1.height/2);
    // keeps the mc1 proportional
    mc1.scaleX <= mc1.scaleY ? (mc1.scaleX = mc1.scaleY) : (mc1.scaleY = mc1.scaleX);
    var interval:int;
    var myTimer:Timer;
    // function to pause timeline
    function pauseClips(secs:int, myClip:MovieClip):void
    interval = secs;
    myTimer = new Timer(interval*1000,0);
    myTimer.addEventListener(TimerEvent.TIMER, goNextFrm);
    myTimer.start();
    function goNextFrm(evt:TimerEvent):void
      myTimer.reset();
      myClip.nextFrame();
      myTimer.removeEventListener(TimerEvent.TIMER, goNextFrm);
    // function to pause timeline on a particular label
    function pauseClipsLabel(secs:int, myClip:MovieClip, myLabel:String):void
    interval = secs;
    myTimer = new Timer(interval*1000,0);
    myTimer.addEventListener(TimerEvent.TIMER, goNextFrm);
    myTimer.start();
    function goNextFrm(evt:TimerEvent):void
      myClip.gotoAndStop(myLabel);
      myTimer.removeEventListener(TimerEvent.TIMER, goNextFrm);
    MovieClip(root).pauseClips(4.5, this);
    // function to fade clips
    function fadeClips(target_mc:MovieClip, next_mc:MovieClip, from:Number, to:Number):void
    var fadeTW:Tween = new Tween(target_mc, "alpha", Strong.easeInOut, from, to, 0.5, true);
    fadeTW.addEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    function fadeFinish(evt:TweenEvent):void
      next_mc.nextFrame();
      fadeTW.removeEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    // function to fade clips with speed
    function fadeClipsSpeed(target_mc:MovieClip, next_mc:MovieClip, from:Number, to:Number, speed:int):void
    var fadeTW:Tween = new Tween(target_mc, "alpha", Strong.easeInOut, from, to, speed, true);
    fadeTW.addEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    function fadeFinish(evt:TweenEvent):void
      next_mc.nextFrame();
      fadeTW.removeEventListener(TweenEvent.MOTION_FINISH, fadeFinish);
    // function to show screen transitions
    function screenFx(target_mc:MovieClip, next_mc:MovieClip):void
    //var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Iris, direction:Transition.OUT, duration:1.2, easing:Strong.easeOut, startPoint:5, shape:Iris.CIRCLE});
    tranFx.addEventListener("allTransitionsOutDone",doneTrans);
    function doneTrans(evt:Event):void
      next_mc.nextFrame();
      tranFx.removeEventListener("allTransitionsOutDone",doneTrans);
    // function to show screen transitions inverse
    function screenFxInv(target_mc:MovieClip, next_mc:MovieClip):void
    var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Iris, direction:Transition.IN, duration:2, easing:Strong.easeOut, startPoint:5, shape:Iris.SQUARE});
    tranFx.addEventListener("allTransitionsInDone",doneTrans);
    function doneTrans(evt:Event):void
      next_mc.nextFrame();
      tranFx.removeEventListener("allTransitionsInDone",doneTrans);
    // function to zoom in
    function zoomFx(target_mc:MovieClip):void
    //var tweenTW:Tween = new Tween(target_mc,"alpha",Strong.easeInOut,0,1,1.2,true);
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Zoom, direction:Transition.IN, duration:3, easing:Strong.easeOut});
    //tranFx.addEventListener("allTransitionsInDone",doneTrans);
    /*function doneTrans(evt:Event):void
      next_mc.nextFrame();
    // Blinds Fx
    function wipeFx(target_mc:MovieClip):void
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Wipe, direction:Transition.IN, duration:3, easing:Strong.easeOut, startPoint:9});
    // Blinds Fx Center
    function fadePixelFx(target_mc:MovieClip):void
    var tranFx:TransitionManager = new TransitionManager(target_mc);
    tranFx.startTransition({type:Fade, direction:Transition.IN, duration:1, easing:Strong.easeOut});
    tranFx.startTransition({type:PixelDissolve, direction:Transition.IN, duration:1, easing:Strong.easeOut, xSections:100, ySections:100});

    This movie is an animated movie from the start to end. I mean to say that though it stops at certain keyframes in the timeline it stops for only a certain time and then moves on to the next animation sequence.
    Its not an application where the user can interact.
    On clicking the play button i want the movie to play normally as it was playing before. If the user has not clicked on the pause button it would anyhow play from start to finish.
    Is there anyway where i could send in the fla file?

  • Flash CS3 ActionScript and "Test Movie" on Mac

    I recently switched over to a PowerMac and Flash CS3 from
    Flash 8 on a PC.
    I've been on a PC forever but wanted to migrate over to the
    Mac as XP and Vista and the headaches we all know about.
    So, within Flash you can "Test Movie" and a little test
    window pops up displaying your swf.
    It has always been the case on the PC, and my friends with
    Flash 8 on the Mac tell me it's the same for them, that you can be
    writing in the Actions panel and then hit "Control/Apple - Enter"
    and the ActionScript actions you just typed will be reflected in
    the "Test Movie" pop up. In other words it the "Test Movie" window
    acts as a constantly updated reflection of the latest edit to your
    Flash piece, regardless of whether you've "Saved" the .fla document
    itself.
    This is part of the normal work flow to me. Write some
    actions, edit them, when they are right, I save. But in the
    meantime, as I'm writing I can keep hitting "Control/Apple - Enter"
    to watch the changes of my edits and I'll see them.
    Well, on my new Mac with Flash CS3, the "Test Movie" window
    never updates to the latest edit. Whether with hot-keys or with the
    cursor/menu selection, the window will not reflect the latest edit,
    UNLESS, I close it first. If I close it, and then hit the
    hot-keys/menu for "Test Movie" then it will load my latest edit
    (regardless of whether the .fla is saved). So it seems that closing
    the pop up "Test Movie" window prior to is the only way to ensure
    getting the current edit/actions to preview.
    If you write a lot of actions script, then I'm sure you can
    agree that adding that "close the window" step into your work flow
    is really really a headache. And, if I can't find a way around
    that, sadly, I'll have to migrate back to the PC, ugh, and Flash
    CS3 on it, which still acts as it always has, with "control-enter"
    faithfully launching the current edit.
    Any ideas? Have you experienced this.

    You have to switch the focus back to the application and then
    to the test window. Evidently between Flash MX04 (the one I have to
    test) and CS3, they made it so that just clicking in the AS editor
    window doesn't return the focus to the application. In that case
    the Testing Environment intercepts the apple-enter and just
    re-tests the already compiled version.
    If you click the application window, then click the
    actionscript window, it will recompile the swf. However I
    personally don't find apple-w to close the window so
    onerous.

  • Flash player has been installed multiple time without errors but bbc news website and even flash player help say it isn't. How do i get out of this loop? - using windows 7 ultimate and latest IE11

    flash player has been installed multiple time without errors but bbc news website and even flash player help say it isn't. How do i get out of this loop? - using windows 7 ultimate and latest IE11

    I have had the same problem for WEEKS and I cannot access any sites that use Flash. Flash has been installed on this computer since I bought it in 2012. I have allowed auto updates but for weeks the updates never get past Step 2 - is this because I do NOT want the Google Tool bar? I use NO tool bars as there is only 6 inches of vertical screen space. Is this because I uncheck wanting Chrome as a default browser?  It is already installed, I just don't use it.  I came to this site and ran the check is it installed and the system says it is either not installed or not enabled. Version 14 just downloaded about 30 minutes ago - but did not progress to Step 3 although a pop up screen came up with a finish button, which I clicked. WHAT is the problem and how do I fix it?  If this were just a compatibility bug between IE11 and Adobe they have had plenty of time to fix it.
    Stephanie HC

  • Control multiple updates and queries within one transaction in JPA

    Hi,
    I have a question regarding control multiple updates and queries within one transaction. We are using EclipseLink 2.3.1. With below code, will I be able to:
    - have all insert, update, select queries committed in one transaction;
    - queryGetBalance will return the latest OrgBalance after update;
    - if one fails, everything rolls back.
    Thanks!
    Jeffrey
    PS: I realized that I cannot use em.getTransaction().begin() and em.getTransaction().commit(), since I am using JTA.
    =============
    @PersistenceContext(unitName="Test")
    EntityManager em;
    em.setFlushMode(FlushModeType.COMMIT);
    newTransaction.setAmount(1000);
    newTransaction.setType("check");
    em.persist(newTransaction);
    orgAudit.setUpdateUser("Joe")
    orgAudit.setupUpdateTime(time);
    em.merge(orgAudit);
    Query queryUpdateBalance = em.createQuery("update OrgBalance o set o.balance = o.balance + :amount where orgId = :myOrgId");
    queryUpdateBalance.setParameter("amount", 1000);
    queryUpdateBalance.setParameter("myOrgId", 1234);
    Query queryGetBalance = em.createQuery("select OrgBalance o where o.orgId = :myOrgId");
    queryGetBalance.setHint("javax.persistence.cache.storeMode", CacheStoreMode.REFRESH);
    queryGetBalance.setHint("javax.persistence.cache.retrieveMode", CacheRetrieveMode.BYPASS);
    queryGetBalance.getResultList();
    em.flush();
    Edited by: JeffreyW on Dec 12, 2011 10:34 AM

    Yes, the operation will be in a single transaction, assuming you are using a JTA managed SessionBean and the code is part of a SessionBean method.

  • Using web services with flash cs3 and actionscript 3.0

    Hi,
    I want to use web services under flash cs 3 and by using as
    3.0.
    It was possible with as 2.0 to do it easily thanks to the
    webservice Connector.
    But I can't find how to use web services under flash and as
    3.0.
    I thought web services took part of the many improvements
    flash cs 3.0 contain, but obviously it does not:(
    Can anybody help me to use webservices with flash cs 3 and as
    3.0?
    Thanks in advance,
    Pascal

    Dark Armor, You mentioned the book Adobe Flash CS4 Professional Classroom in a Book, which I have.  I could not find anything in there.  Did you mean to say Actionscript 3.0 for Adobe Flash CS4 Professional?  I do have that book and it looks like there is information there.  Just wanting to make sure that you meant what you said.  Thanks!

  • PowerBook G4 - Won't Start Up - 3 Strange Beeps then just LED flashes and sudden death - black screen.

    PowerBook G4 - Won't Start Up - 3 Strange Beeps then just LED flashes and sudden death - black screen.
    Prior that the powerbook also couldn't start but I could see the Apple logo, so via fire-wire (holding T at start up) I backed up the hard disk.
    Check via DiskToolPro the structure, defragmented. Via DiskWarrior rebuild the directory
    and finally not been able to access the drive I reformatted the drive via fire-wire drive.
    Re-started the powerbook holding C to boot up from DVD - nothing
    Re-started again and it give me one long beep and black screen. An indication that my 1gig RAM is bad or gone (?) and the DVD is stuck inside.
    Bought new one 1 gig, installed it and now I'm getting only three beeps.
    I tried all, changed the slots several times and nothing.
    I tried more as:
                             c -- to boot from CD (again while the DVD is still inside and I cannot get it out)
                             cmd-opt-p-r -- to Zap the PRAM,
                             cmd-opt-n-v -- to clear NV RAM,
                             cmd-opt-o-f -- to boot into open firmware … and nothing. The DVD is in and I have 
                                                    black screen with three beeps and flashing LED.
    Do I have to replace the Logic Board?   (Anyone has a spare one ?)
    But it is the faulty Logic board?
    Could anyone help me out? Please.
    I'm retired and I cannot afford a new laptop - and this powerbook was a great, great horse for me until that horrible set of three beeps.
    Thank you in advance for any advice and help.
    Martin
    THE SPECS OF MY POWERBOOK:
    Model Family:
    Powerbook G4 Aluminum
    Processor:
    1.67GHz G4 (PowerPC 7457B)
    Manufacturer:
    Motorola
    # of CPUs:
    1
    Codename:
    Apollo 7
    Display:
    Size:
    15.2"
    Finish:
    Matte
    Resolution:
    1280x854
    Backlight:
    CCFL
    Base Memory:
    1gig PC2700 SODIMM
    Brand:
    Apple
    Wireless:
    802.11b/g
    Color(s):
    Aluminum
    Original OS:
    Mac OS X 10.6.3
    Battery:
    50-watt-hour removable lithium-ion battery
    Graphics:
    ATI Mobility Radeon 9700 (64MB)
    Base Storage:
    80GB 5400RPM EIDE 2.5"
    Optical Drive:
    8x Superdrive
    Model Number:
    A1106
    Sales Number(s):
    M9677LL/A
    Machine Number(s):
    PowerBook5,6
    Dimensions:
    13.7 in x 9.5 in x 1.1 in
    Weight:
    5.6 lb
    Production:
    Jan 31, 2005 - Oct 19, 2005
    Factory:
    China
    Production Year:
    2005
    Production Week:
    35 (September)
    Production Number:
    4240

    But it is the faulty Logic board?
    There was a known issue with LBs in 15-inch PowerBooks with 1.5 and 1.67Ghz processors in which one RAM slot would fail. There once was a repair extension program that fixed the problem at no cost, but it is long-expired.
    The problem with seeking a used logic board for these models is that so many had their boards replaced that it increases the chances of the boards in the used/pulled markets having the same problem you have now. The replacement program also came close to exhausting the supply of new boards,
    If it turns out to be a bad LB and you can't find a replacement, consider how used computer pricing works: A used computer is worth hugely more in parts than if bought as a working unit. I.E, you can probably find a working PowerBook that will cost less than the logic bard alone. It also possible to find a used MacBook Pro for less that a replacement LB.
    If you tell us your approximate geographic location, we can see what's available nearby. I'm also retired, and and visiting my wife's family this week so have even more time than usual to help you search.
    Regards,
    Allan Jones

  • Is it possible to have two different DIO such as DIO 0 and DIO 8 to control 1 LED provided both DIOs are both true?

    is it possible to have two different DIO such as DIO 0 and DIO 8 to control 1 LED provided both DIOs are both true? If so, how do we connect the 2 IOs tothe LED? 

    Why use two DIO lines?  If they aren't doing anything else, just AND the signals in software and just use 1 output.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • HT5655 I have downloaded the latest flash for my mac (running mountain lion 10.8.2) multiple times and have uninstalled it multiple times, but it still says blocked plug in. Im using firefox but i need safari back. any help?

    I have downloaded the latest flash for my mac (running mountain lion 10.8.2) multiple times and have uninstalled it multiple times, but it still says blocked plug in. Im using firefox for now. any help? Firefox and safari are like night and day. i just want safari back.
    Thanks.

    Adobe support article.
    Adobe Flash Player Troubleshooting
    Adobe Flash Uninstaller

  • Lumia 1020 flash and LED not working

    Both flash and LED stoped working on my Lumia 1020. I tried: soft reboot, hard reboot, different camera apps (and settings) and a app to use the phone as a flash light: no result. 
    It worked untill yesterday. Camera is working fine, but without LED and flash.
    Suggestions?

    Having the same problem. Suddenly camera flash & led stopped working. Cannot afford hard reset due to much lost of data. Searched for solutions but could not found any. Also nobody seems to be interested to help out. Don't get any solution or answer by Nokia.

Maybe you are looking for

  • Multiple instances of weblogic server 6.1 running on the same machine

    Hi, I need to run two instances of weblogic server 6.1 running on the same machine. I need one for development and the other one running the live applications. I need two instances to be independent of each other. I am running weblogic server as an N

  • HT4864 imap prefix

    Since upgrading to moutain lion icloud (me.com) mail has stopped working... I think I need to check the incoming and outgoing settings particularly IMAP which is grey's out

  • Change row`s height

    Hi, How to change Row height in standart report template, if I use jquery.htmldbHscroll-0.0.1.min (which I found on this forum). Simply rows height are bit another than in colums without scrolling. Thank you !

  • Why don't some of my emails display any contents on the iPad?

    Some of the emails only show the from/to header when I open them on the iPad, whereas when I open them on my android or my Mac their full contents display.  Is there a fix for this?  It is not all emails, only some, and they appear to be random, not

  • Finding most recent file in a directory

    Hi, Is there a simple and easy way in labview to write a program that goes into a directory and looks for the most recent file. I can think of one way where I use the list directory vi to obtain an array of the file names in the directory and then us