Security System Example For Freesacle Microcontroller Kit

Dears,
I need the Example For the Security System Using the Freescale Microcontroller Kit with LabVIEW.
this Example Can Be Seen on the Web cast For NI ELVIS Embedded Design:
http://ni.adobeconnect.com/p35906816/?launcher=false&fcsContent=true&pbMode=normal
Thanks
Ahmed Abdulbaky

I am also using same security vi's and having NI ELVIS II freescale board using HCS12 microcontroller P&E USB BDM Multilink option, but I am getting the error of 200559 while running my vi's as in my post.
Ali Tariq Bhatti
Advice: Some people talk on different issues and abusive against your post because they do not want to help and arguing with you on some other topic. You all will observe and I also observed, so also do not want to mention their name and best way is complaint them to the moderator. If anyone still wants to talk on different issues against the post, other way is to do private message.
~~~Be nice, have faith in ALLAH(God)~~~

Similar Messages

  • Help networking a Security System DVR for remote viewing

    Hey,
    I am trying to network my Security System DVR for remote viewing but cannot seem to get it working. I have read some post on this site as well as many others and followed instructions to the T but to no avail.
    Here's what I've got:
    Linksys WRT54G2 V1 connected to a modem.
    My DVR has 3 settings for networking:
    -PPPOE
    -Static
    -DHCP 
    On DHCP, The DVR automatically sets these settings:
    IP Address: 192.168.1.100
    Subnet:  255.255.255.0
    Gateway: 192.168.1.1
    and then the DNS is the same as the one on the "status" area of the router settings...
    Port: 10000-10020
    I set up port forwarding for 192.168.1.100 for port 10000-10020 selecting "both"
    If I pull up the "DHCP Clients Table" it shows the above IP Address but with no name....and the MAC address is something like ee:ee:ee:d4:03:5f.
    I have tried to change the DVR to Static and do everything manually but thats not working either.
    I created a Dynamic DNS with goddns.org but the DVR seems to have its own one built in that you cannot change. (at the bottom of the network settings it says something like "URL: 123484984.goddns.org----Status:  OK."  But when I try to type that in the address bar of IE it goes no where.)
    I hope someone can tell me why its not working.... It was working when we first got everything set up...then it stopped. then I messed with it and got it working but didn't know what I did.  Now its broken again and I don't know what to do.  
    -Ian
    PS.  When I am connected to the router via LAN cable and I type the internal IP Address assigned to the DVR by the DHCP (192.168.1.100:10000) it brings up the DVR menu perfectly.  But when I try to log into it from a different location...with the external IP address...thats when I have trouble.  I do not think my external IP has changed since I got this router set up.
     Any help would be awesome. 

    Hmmm... Did that and I can't seem to get it working still. Whats weird is that as long as I am connected to the router...I can access it through the internal IP address.... (if using DHCP its 192.168.1.100:10000 and if using static its 192.168.1.99:10000)
    Those both work when set up on DHCP for the first and Static for the second.  But as soon as I type the external IP address with the port it doesn't work.  Its like there is a firewall OR the port forwarding is not working.  But everything on the port forwarding page looks good... Its enabled, set on Both, correct port range... 10000-10020...
    Any Ideas?
    -Ian 

  • CLD exam security system example

    I have a question concerning the front panel Zone Status Indicators.
    Would using a cluster of Color Boxes instead of a cluster or array of boolean indicators be acceptable?
    Acceptable meaning - not take any points off for the exam because of using Color Boxes.  On the instructions for the exam it states "front panel similar to the graphics provided" .so I am assuming it would be ok.
    Brian

    I am about to take the exam myself.  I don't think that your solution has to exactly match NI's solution.  There are many ways to solve the problems.  I would think that anything that is functional would not have points taken off.  But I would follow the front panel given as closely as possible so as to not disturb the person grading the exam.  As for color boxes, they indicate just as well as a boolean indicator, so I would not think they would dock you any points.
    - tbob
    Inventor of the WORM Global

  • MY LVOOP solution to CLD- Security System

    Hi All,
    Today , I gave a shot at the security system example from CLD. I did it using LVOOP. Do leave your comments on the code. (I havent done much documentation. Also, I have given the flexibility to the program to log file in any format, as per extension entered by user. The code has been written in a hurry, so pls ignore any cleanups of BD remaining ).
    Thanks in advance!
    -FraggerFox!
    Certified LabVIEW Architect, Certified TestStand Developer
    "What you think today is what you live tomorrow"
    Attachments:
    Test_Security.zip ‏100 KB

    Pretty good all in all, some comments though.
    They like comments and descriptions in controls and indicators, points are deducted for not having this.
    They also like block diagram constants to be labelled (again points off for not doing this).
    Your error cluster is not handled too well, if there is an error in any of the states it will just propogate through continuously, probably not what you want. I think the app is supposed to stop on error (cant remember exactly).
    The Array local variable in the "get status" state is unnecessary, you could just move the control outside, into the while loop. Locals are generally discouraged.
    In the "get status" I would not recommend hiding the index display of the string array you are passing on. At first glance it seems the same state is being queued regardless!
    You are not closing the file reference.
    One thing to note, my CLD was a lot longer than the pratice examples (a lot!, and I code quite quickly).
    Good effort though!
    nrp
    CLA

  • Security System CLD Exam Problem Solution? Insane?

    I just started working on the CLD example problems.  I've been using Labview for about 10 years - so everything I do is old-school.
    I'm posting this solution for the Security System example.  There are arrays of switches to represent the alarm, bypass, and tamper
    signals - and then a loop to go through each "zone" to logically determine the state (normal, alarm, bypass or tamper).  To make the
    "zone status" indicator an easily scalable indicator I have the "zone" loop change the color of a boolean LED indicator.  Then I take a 
    picture of it and display an array of pix.  
    Question:  This works fine, good response - but would it pass?  Is there a better way? I attached the diagram...
    Solved!
    Go to Solution.
    Attachments:
    security system.png ‏43 KB

    I don't like the detour over an array of images and property nodes. Seems indirect and inefficient. Is that a requirement or your idea?
    Also I assume that the FOR loop executes quickly, so you should probably do the timestamping once before the loop.
    The "wait for FP activity is really "old school" and not very good. You typically get extra triggers, which is expensive since you write to the file every time. I would strongly suggest an event structure instead.
    The small FOR loop can be replaced by "search array". Much cleaner!
    It might be better and more efficient to open/create the file once before the loop, write using lowlevel functions during the loop, and close after the while loop has finished.
    LabVIEW Champion . Do more with less code and in less time .

  • Security System Review

    Hi Guys,
    My CLD is on Wednesday and here i attached security system solution for review. Please review as early as possible, am running out of time.
    Yes, I know its an older exam but in CLD 2012 Prep Guide its states that one of the possible exam scenario and don't know how much it differs.
    Attached Back saved version in 2010
    Waiting for reply.
    Attachments:
    Security Systems LV 2010.zip ‏361 KB

    Quickly,
    Discriptions and tip strips for every object the user sees.  Get into the habit fast.
    I would have used an array of round color boxes and clusters of switches (and filter events to allow the overridden conditions to be expelled you are missing some functiality there)
    Overall not too bad
    Good Luck
    Jeff

  • Outlook 2013 - Password change breaks S/MIME Certs "An error occurred in the underlying security system. Key not valid for us in specified state."

    AD password change comes up, user changes password.
    Tries to send signed or encrypted email with a Comodo S/MIME certificate, and gets the following error:
    ""An error occurred in the underlying security system.  Key not valid for us in specified state."
    I now have two reports of this error - one on Windows 7, and one on Windows 8.0 (remote user).
    The one on Windows 8.0, we tried removing their S/MIME cert from Outlook/Windows and re-adding, this did NOT resolve the issue.
    Plan was originally to have the 8.0 user ship their machine in, and wipe it, since nothing else could fix it and I wasn't finding anyone else with the same issue.  Now that I've got a second user with the same issue, its looking like a bug/issue and
    not a random glitch.
    Thanks in advance for any and all help with this!

    Hi,
    Thank you for your question.
    I am trying to involve someone familiar with this topic to further look at this issue.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • How can I creat a security system for a truck, with Wifi camera playing on iPad/iPhone without 3G/LTE ?

    Hello,
    I want to create a wifi security system for a truck with cameras, but all the ones I found are IP. So I don't know if it's possible to use it only on wifi (not on 3G/LTE).
    If you have an idea, it will be nice...
    Thank you

    that range of most wifi setup unless you want to pay alot!
    would likely mean you could see about as much as the camera from where you were standing
    a mifi or otherwise something which bridge a lan to the internet would work
    make sure the camera have a webserver in it and then you can see it from any web browser where you put in the login and password

  • Home Security System For Mac?

    I'm on the market for a home security system I can run through my home computers. I was all set to purchase a nice Logitech system with an outdoor camera and everything else, and noticed it doesn't work with Mac.
    I've done a lot of research, but I'm not finding a recommended system for Mac users.
    Can anyone make a recommendation or point me in the right direction?
    Thanks.

    You might check CNet Downloads or MacUpdate and search for the software. Then you will know what systems should work with Macs such as Thinking Home that works with X-10 devices.

  • Where's the FREAKING manual for the DigitalLife Security System?

    Where is the printed documentation for the AT&T DigitalLife Security System?  The so-called on-line system is PATHETIC and UNUSABLE, as it is impossible to(a) get it to run at all and (b) has light gray TINY printing on a white screen, making it UTTERLY impossible for senior citizens like myself to read (when we can get it to appear at all). After all the time and money I've spent on this system, I WANT SOME DOCUMENTATION!
    Ed N 
    Galloway, Ohio

    Access Help is what you're looking for.
    \\ I do not respond to PM regarding individual tech support. Keep discussions in the forum for the benefit of others //

  • Weblogic.security.SecurityInitializationException: Authentication for user system denied

    Reason: weblogic.security.SecurityInitializationException: Authentication for user system denied
    I tried my user name.But server didn't start.PLz help me and tell me what i have to do.
    Thanks

    Hi,
    The admin server is also able to start the managed server. The easiest way is
    to use a script. The command of starting a managed server is not much different
    from the one for the admin server. Just make sure that you reference the admin
    server URL (eg. http://localhost:7001). The more production environment way of
    managing managed server is to use the notemanger. See the admin guide for more
    infos.
    Which version are you using?
    Kai
    "hari" <[email protected]> wrote:
    >
    Hi!Kai..
    I tried with system/weblogic....but same error.Actually i created domain
    and managed
    server in existing domain throgh config.sh
    But the admin server is running properly.But the manager is not starting,user
    authentication problem is coming.When i was created domain..i created
    a user.I
    started admin server with that user...but manged server is not starting.Plz
    help
    me.

  • Help port mapping for lorex security system

    i need to find out how to do my port mappping, not sure what to put in the fields . trying to set up for remote viewing. i have ddns set up, but need port mapping

    The following are the basics for setting up an 802.11n AirPort for port mapping/forwarding:
    Port Mapping Setup
    To setup port mapping on an 802.11n AirPort connect to the AirPort's wireless network, and then use the AirPort Utility, in Manual Setup, to make these settings:
    1. Reserve a DHCP-provided IP address for the host device.
    AirPort Utility > Select the AirPort > Manual Setup > Internet > DHCP tab
    On the DHCP tab, click the "+" (Add) button to enter DHCP Reservations.
    Description: <enter the desired description of the host device>
    Reserve address by: MAC Address
    Click Continue.
    MAC Address: <enter the MAC hardware address of the Lorex security system device>
    IPv4 Address: <enter the desired IP address>
    Click Done.
    2. Setup Port Mapping on the AirPort.
    AirPort Utility > Select the AirPort > Manual Setup >Advanced > Port Mapping tab
    Click the "+" (Add) button
    Service: <you can safely ignore this option as you will be making custom port mapping choices for your security device>
    Public UDP Port(s): <enter the appropriate UDP port values>
    Public TCP Port(s): <enter the appropriate TCP port values>
    Private IP Address: <enter the IP address of the Lorex security system device>
    Private UDP Port(s): <enter the same as Public UDP Ports or your choice>
    Private TCP Port(s): <enter the same as Public TCP Ports or your choice>
    Click "Continue"

  • HT5228 I am running OS 10.5.8 on an iMac. There is no security update issued for this operating system - it only covers 10.6. Is my comuter vulnerable? Do I need to do anything?

    I am running OS 10.5.8 on an iMac. There is no security update issued for this operating system - it only covers 10.6. Is my comuter vulnerable? Do I need to do anything?

    I'm still not clear why Apple only issued security updates for 10.6 and later. I assume they think we should all update our operating systems or maybe they are just focusing on the majority of users?
    Apple has had a long standing policy of only supporting the current and previous operating system releases.  Whether they decide to make an exception for even older releases is anyone's guess.
    You can send them feedback to express your opinion.
    Or does the new Trojan not affect older OS? I'd like to know , if anyone has information.
    As far as is known, it does affect older unsupported releases.  Disabling Java in your web browser is the current preventive approach (and that is a community derived approach)

  • Best phone plan for security system?

    When I first got Fios for my home two years ago, the Triple Play bundle was the best value for me at the time. This included Freedom Essentials.  My home phone line is only used for my home's security system.  I don't make any calls on that line. I'm currently paying $50 a month for Freedom Essentials which is ridiculous because I don't need it.  I'm wonder what the cheapest home phone plan from Verizon is that I can subscribe to instead.  

    Last time I looked, the least expensive Verizon phone was about $10 (as mentioned above) and did come with 25 free calls and then 4 cents per call after that.
    The real question is it still POTS-like?
    I'm moving to a new house, and per ADTand Brinks (Broadview) their service does not work with some Verizon products. I suspect they mean the VOIP product (Digital Voice), but I'm not really sure. They really want to see a plain old telephone service (POTS), aka twisted copper pair, to be sure the system works. I still don't know if Freedom Essentials looks like POTS.
    Getting this stuff coordinated is a pain. I was all set to use Freedom Essentials, but then I was told Digital Voice would save me some money in monthly taxes. Now I'm trying to figure that out.

  • Is there any security system for the Internet for the iPad?

    Is there any type of security system for the Internet for the iPad?

    If you're asking about virus protection for your iPad, it's not necessary.  All iOS devices, including iPad are closed devices and you really can't download anything which could contain a virus........

Maybe you are looking for

  • Macbook pro is not working, only mouse!

    How can help me my macbook pro is not working properly! I can only use the mouse. What is going on and can tell some one what i can do! Thank you already

  • Problems using different tables for base class and derived class

    I have a class named SuperProject and another class Project derived from it. If I let SchemaTool generate the tables without specifying a "table" extension, I get a single TABLE with all the columns from both classes and everything works fine. But if

  • Return posting to quality inspection stock

    Hi QM Gurus!        How can i post from unrestricted to quality insp stock? I am trying to use movement type 322(quality insp to unrestricted-reversal) and an error message says "Change the inspection stock of material 1101 in QM only". When i activa

  • Cancellation of GR (161 Movement)

    Hi Experts, We have posted a MIGO (161 movement) and posted credit memo also. Now we want to cancel that MIGO. When I am cancelling the MIGO "Deficit of PU IR quantity 85.000 NOS". But I suppost material should be added in our store location stock no

  • Can you control Apple TV via LAN from 3rd party control such as AMX or Crestron?

    I would like to know if you can control an Apple TV via LAN with a 3rd party control AMX or Crestron - is there an API available for this? Two way communication would be ideal!