Adding Nest and Belkin WeMo products

Where is the optimal location to install the Airport base station based on the following:\
I have the following sensors i am trying to connect to my WLAN at home:
2- WeMo light switches (1- kitchen and 1- bedroom)
1- WeMo outlet switch (basement office)
2 - Nest Thermostats (2 - zone heating and cooling)
2 - Nest Smoke/C02 alarms
all running over my Apple Airport base station.  I added an Airport extreme so i could extend the WLAN upstairs in our split level home.  The Nest products are visible most of the time from my iOS 7 phone & Tablet.  Of the 3 WeMo devices only the wall switch shows up, the light switches are "grayed out".  Can't seem to find our why they are dropping off. 
Overall the house is a log cabin, upper and lower, with cinder block foundation, and is approx 3,000 sqft. My office is in the basement where the Comcast cable enters the house through a splitter to the TV and to my router.

Optimal.....It is an oversimplification to say that wireless devices need to be as close as possible and have line-of-sight to the wireless access point to which they are connected....but it would be ideal if this were possible.
Otherwise, you must work backwards from the ideal and accept the fact that everything will be a compromise of sorts.
You will have a significantly higher quality signal if you can connect the AirPorts together using a wired Ethernet connection, since you lose at least half of the bandwidth on the network when you try to extend wirelessly.
Add in the fact that the ceiling is probably absorbing another 20-25% of the signal and you can see why there won't be much of it left for the extender to extend.
The extender does not "boost" the signal speed, it simply takes what it receives and makes it go further.
To give you a rough idea, my house is not as large as yours....about 2400-2500 square feet all on one basic level, and I use four AirPorts all wired together to provide the wireless network, which delivers a strong, fast wireless signal to any point in the home and out on the patio as well.

Similar Messages

  • Adding nested table to object table

    if I alter an object type and add a nested table to it, there seem to be no syntax to add "STORE AS" clause for that nested table in the object table containing the altered object type. E.G.:
    ALTER TYPE fd_dao ADD ATTRIBUTE Own_Name Own_Name_ntt;
    where Own_Name_ntt is a nested table type, then
    ALTER TABLE FD_DOT NESTED TABLE Own_Name STORE AS Own_Name_ntab;
    does not work but the table FD_DOT can not be used since it lacks the storage for the newly added nested table.

    Check your syntax.
    CREATE TYPE Own_Name_ntt AS TABLE OF VARCHAR2(25);
    CREATE TYPE fd_dao AS OBJECT
    (col1        date
    ,col2        number);
    CREATE TABLE fd_dot(cola varchar2(10)
                       ,colb date);
    ALTER TYPE fd_dao ADD ATTRIBUTE Own_Name Own_Name_ntt;
    ALTER TABLE FD_DOT ADD (Own_Name Own_Name_ntt)
        NESTED TABLE Own_Name STORE AS Own_Name_ntab;
    SQL> CREATE TYPE Own_Name_ntt AS TABLE OF VARCHAR2(25);
      2  /
    Type created.
    SQL>
    SQL> CREATE TYPE fd_dao AS OBJECT
      2   (col1        date
      3   ,col2        number);
      4  /
    Type created.
    SQL>
    SQL> CREATE TABLE fd_dot(cola varchar2(10)
      2                     ,colb date);
    Table created.
    SQL>
    SQL> ALTER TYPE fd_dao ADD ATTRIBUTE Own_Name Own_Name_ntt;
    Type altered.
    SQL>
    SQL> ALTER TABLE FD_DOT ADD (Own_Name Own_Name_ntt)
      2      NESTED TABLE Own_Name STORE AS Own_Name_ntab;
    Table altered.
    SQL> desc fd_dot
    Name                                                                          Null?    Type
    COLA                                                                                   VARCHAR2(10)
    COLB                                                                                   DATE
    OWN_NAME                                                                               OWN_NAME_NTT
    SQL> desc fd_dao
    Name                                                                          Null?    Type
    COL1                                                                                   DATE
    COL2                                                                                   NUMBER
    OWN_NAME                                                                               OWN_NAME_NTT
    SQL> disconnect
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bit Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining options
    SQL> CREATE TYPE Own_Name_ntt AS TABLE OF VARCHAR2(25);
      2  /
    Type created.
    SQL>
    SQL> CREATE TYPE fd_dao AS OBJECT
      2   (col1        date
      3   ,col2        number);
      4  /
    Type created.
    SQL>
    SQL> CREATE TABLE fd_dot(cola varchar2(10)
      2                     ,colb date);
    Table created.
    SQL>
    SQL> ALTER TYPE fd_dao ADD ATTRIBUTE Own_Name Own_Name_ntt;
    Type altered.
    SQL>
    SQL> ALTER TABLE FD_DOT ADD (Own_Name Own_Name_ntt)
      2      NESTED TABLE Own_Name STORE AS Own_Name_ntab;
    Table altered.
    SQL> desc fd_dao
    Name                                                                          Null?    Type
    COL1                                                                                   DATE
    COL2                                                                                   NUMBER
    OWN_NAME                                                                               OWN_NAME_NTT
    SQL> desc fd_dot
    Name                                                                          Null?    Type
    COLA                                                                                   VARCHAR2(10)
    COLB                                                                                   DATE
    OWN_NAME                                                                               OWN_NAME_NTT
    SQL> disconnect
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.3.0 - 64bit Production
    With the Partitioning option
    JServer Release 9.2.0.3.0 - Production

  • A nest within a nest and the multiple-query blues...

    Hi all:
    Complex problem here, so bear with me please. I'm still
    building this corporate database for purposes of inventory
    tracking, and my latest problem follows. Here's the setup.
    I have a MySQL database with 3 tables (there are actually
    more, but those are the only ones that are relevent):
    units_main' stores information about machinery such as its
    model number and invoice number.
    di_options_main' keeps track of what accessories are added
    to a given unit through the use of a foreign key, in this case an
    auto-generated integer called 'unit_id' which is primary in
    units_main and secondary in this table.
    valid_options stores the values such as manufacturer and
    type for the accessories mentioned earlier, linked through the
    common key of 'model_number'.
    Now I have a searching engine which brings up a standard
    results page (a regular table with a repeating recordset) of all
    units matching the given search criteria. I want to be able to look
    at this search results page and see not only the data retrieved
    from the units_main table, but also some of the related data in
    di_options_main. For instance, suppose I have an L3400 tractor with
    an LA703 loader. The tractor is listed in units_main, while the
    loader is found in di_options_main. I could create one recordset
    for the main tractor data and one for the loader (option) data, but
    this screws up the repeating recordset. Further, in this case, the
    data needs to be retrieved from di_options_main based on the 'type'
    field of valid_options - I only want to see accessories of the type
    'LOADER'. This puts the query about three generations back. I might
    still be able to code this if it weren't for the repeated region,
    which can't be nested and throws a wrench in the works. I know this
    is a difficult question, but I can post code for one or all the
    files involved if it sounds like something someone can help me
    with. Thanks in advance.

    What you need to do is join all the tables into a query in
    the database,
    then use this as a source for the recordset on the page. You
    need to use
    nestes repeat regions to display the detail information.
    Depending upon the
    server language you are using there are extensions that can
    do this for you.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "Ken Ha Quad" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi all:
    >
    > Complex problem here, so bear with me please. I'm still
    building this
    > corporate database for purposes of inventory tracking,
    and my latest
    > problem
    > follows. Here's the setup.
    >
    > I have a MySQL database with 3 tables (there are
    actually more, but those
    > are
    > the only ones that are relevent):
    >
    > '
    units_main' stores information about machinery such as its
    model
    > number and invoice number.
    >
    > '
    di_options_main' keeps track of what accessories are added
    to a
    > given
    > unit through the use of a foreign key, in this case an
    auto-generated
    > integer
    > called 'unit_id' which is primary in units_main and
    secondary in this
    > table.
    >
    > '
    valid_options stores the values such as manufacturer and
    type for
    > the
    > accessories mentioned earlier, linked through the common
    key of
    > 'model_number'.
    >
    > Now I have a searching engine which brings up a standard
    results page (a
    > regular table with a repeating recordset) of all units
    matching the given
    > search criteria. I want to be able to look at this
    search results page
    > and see
    > not only the data retrieved from the units_main table,
    but also some of
    > the
    > related data in di_options_main. For instance, suppose I
    have an L3400
    > tractor
    > with an LA703 loader. The tractor is listed in
    units_main, while the
    > loader is
    > found in di_options_main. I could create one recordset
    for the main
    > tractor
    > data and one for the loader (option) data, but this
    screws up the
    > repeating
    > recordset. Further, in this case, the data needs to be
    retrieved from
    > di_options_main based on the 'type' field of
    valid_options - I only want
    > to see
    > accessories of the type 'LOADER'. This puts the query
    about three
    > generations
    > back. I might still be able to code this if it weren't
    for the repeated
    > region, which can't be nested and throws a wrench in the
    works. I know
    > this is
    > a difficult question, but I can post code for one or all
    the files
    > involved if
    > it sounds like something someone can help me with.
    Thanks in advance.
    >

  • Logical standby issue after adding a new user at production db server

    Hello Experts,
    I am facing a issue related to logical standby db server where after adding a new user at production db server logical standby has stopped sql apply. Can anybody give some idea to find out the root cause and give some tips to resolve the issue.
    tried below .....
    SELECT EVENT_TIME, STATUS, EVENT FROM DBA_LOGSTDBY_EVENTS
    ORDER BY EVENT_TIMESTAMP, COMMIT_SCN, CURRENT_SCN;
    got error
    ORA-16227: DDL skipped due to missing object
    ORA-01403: no data found
    ORA-00942: table or view does not exist
    OS : RHEL 4 (IBM P5)
    DB : Oracle 10g (10.2.0.1)
    Achyot

    Please let me know if can skip the DDL at which it is failing.
    ALTER DATABASE STOP LOGICAL STANDBY APPLY;
    Use EXECUTE DBMS_LOGSTDBY.SKIP
    ALTER DATABASE START LOGICAL STANDBY APPLY;
    Thanks,
    Renu

  • Inside identity and access control products : blog

    Frinends,
    Visit my blog http://identitycontrol.blogspot.com to get inside working of the identity and access control products. My efforts here is to explain insides in a simple language.
    Latest topic i added is "SAML in action"
    Please post your comments also so I can improve the contents.
    Thanks

    Thanks a lot idmguru!!
    your efforts are simply awesome..
    -Yash Bansal

  • Inside of idm and access control products

    Hello Friends,
    For the past few months I was working on a blog where I shared my past experiences with the IAM products, New technologies and problems faced in the products at a conceptual level. I thought of sharing that with experienced team of technocrats like you. Please have a look into this and let me how how can I improve this.
    blog URL --> http://identitycontrol.blogspot.com/
    Thanks
    idmguru

    Frinends,
    Visit my blog http://identitycontrol.blogspot.com to get inside working of the identity and access control products. My efforts here is to explain insides in a simple language.
    Latest topic i added is "SAML in action"
    Please post your comments also so I can improve the contents.
    Thanks

  • Labview Crashes when adding case and sequence structures

    I am running into a problem that I have never experienced before - when I am adding case and sequence structures to a version of code I am writing, Labview 6i crashes (i.e CPU allocation jumps to 95% on the task manager and hangs there) requiring an "end task". I am writing the code within XP Pro running on a 1.7 Ghz Pentium 4 machine with 512 MB.
    The code is used to control valves and temperature controllers on a Noble gas analysis line and is fairly simple. There are multiple nested sequence (30 steps long) and case structures within a while loop. The code itself is around 1.9 MB, so given the speed and on-board memory of my machine I doubt that I am reaching and physical limit in terms of the memory or proce
    ssing power required.
    Has anyone ever seen something like this? Could the code have been corrupted by an email transfer? If so are there ways to recover? Any help would be greatly appreciated.

    Yes. At least to 6.0.2. Also, you might be able to fix the problem by doing a mass recompile of the directory that the vi resides in, this fixed a similar problem I had about a year ago. Just start Labview, but don't open any of the VIs in that program, then select Tools->Advanced->Mass Compile. I am not sure why it worked for me, but it did, I think it cleans up the code a bit.
    Jon D
    Certified LabVIEW Developer.

  • I have added an application server to productive XI server

    I have added an application server to productive XI server.
    I am wandering how the load will be distributed among them espetially SOAP where URL is entered with servername of existing  XI server

    Hi Prateek,
    Even i have installed a dialog instnce for my for my XI production server on a seperate node. I am using a web dispatcher as a load balancer.
    I am just wondering how and at what level the load will be balanced in a PI system.
    Kindly suggest.
    Best Regards
    Raghu

  • Problem connecting belkin wemo switch to hime hub ...

    Have a belkin wemo switch which connected to network with no issues using old netgear router.
    Now we have upgraded to BTs home hub 4, we cannot get the wemo device to connect to the network,
    Has anyone else experienced this and are you able to offer us any advice?

    The IP subnet is different on the home hubs. Reset your Belkin device to factory default, and set it up again, it should pick up the correct IP and subnet.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • When i try to open photoshop this shows up Please uninstall and reinstall the product.  If this problem still occurs, please contact Adobe technical support for help, and mention the error code shown at the bottom of this screen.  Error: 16

    i had to take my photoshop file into a hardrive because my dad was going to give me a new Mac and when things didn't work out and went back to my old one i use the time capsule thing to save everything before but didn't give me photoshop so i physically moved the file and tried to open it but then this error shows up
    Please uninstall and reinstall the product.
    If this problem still occurs, please contact Adobe technical support for help, and mention the error code shown at the bottom of this screen.
    Error: 16
    and when i click the uninstall app on the file it tells me this
    The alias “Uninstall Adobe Photoshop CS6 2” can’t be opened because the original item can’t be found
    and when i click fix alias i click on photoshop and the app just turns into photoshop and i just run in circles
    please help thank you

    Run the cleaner tool and reinstall.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Download CS6 products
    Mylenium

  • Different GL accunts during GR for PO and GR for production order

    Hi
    For posting GR for PO and GR for Production order we use movement 101 only then how we can define or e different GL accounts for both the transactions ?

    Hi,
    As per my undestanding
    If you want to hit different GL for same material type for e.g. GR for PO and GR for Production order.
    you can define split valuation, Suppose material A has two Split valuation External Procurement or Inhouse Production.
    Now For valuation type External Procurement assign valuation class 1000 and for Inhouse Production 2000.
    Now in GBB for valuation modifier BSX assign two separate GL
    Like
    GBB     BSX     1000           120000(External Procurement)
    GBB     BSX      2000           130000(Inhouse Production)
    Solution 2 :-
    Define other movement type for Production create and create a new event key and assign GL to that one.
    Hope HElp U !
    Regards,
    Pardeep Malik

  • IDoc creation on save and change of production order

    I am looking for a way to create, and send if possible (if not I'll send with a batch job), on the save (creation and change) of production orders.  This will be a modified LOIPRO iDoc.  Currently we have a customer exit on the save of the production order but because it is before the save we must predict the number of the prod order.  This has worked but now we are creating one production order per line item in a sales order (automatically) so this is causing us to predict the same production order number twice.  We need a way to automatically create and send an iDoc for all production orders for given plants.  Right now the solution we are looking at is creating an output type and running through those output types a few times a day, sending them down to the Shop Floor system (proprietary system). 
    Is there anything setup in SAP that we can utilize?
    Regards,
    Davis

    Hi Rick,
    Follow the below sample steps for changing component quantity:
    DATA:
        l_methods TYPE bapi_alm_order_method,
        it_boperations TYPE STANDARD TABLE OF  bapi_alm_order_operation_e WITH HEADER LINE,
        it_components TYPE STANDARD TABLE OF bapi_alm_order_component_e WITH HEADER LINE,
        it_components1 TYPE STANDARD TABLE OF bapi_alm_order_component WITH HEADER LINE.
    1. Call BAPI :BAPI_ALM_ORDER_GET_DETAIL , it will give existing order component details.
    CALL FUNCTION 'BAPI_ALM_ORDER_GET_DETAIL'
        EXPORTING
          number        = <production order number>
        TABLES
          et_operations = it_boperations
          et_components = it_components
          return        = it_bapiret2.
    2. Move it_components to components table compatibel to BAPI "BAPI_ALM_ORDER_MAINTAIN".
    LOOP AT it_components.
    MOVE-CORRESPONDING it_components TO it_components1.
    _*"Note here while moving change the component quantity"*_
    APPEND it_components1.
    CLEAR it_components1.
    ENDLOOP.
    3. Build the methods table for change production order :
    it_methods-refnumber = v_refnumber.
                it_methods-objecttype = 'COMPONENT'.
                it_methods-method = 'CHANGE'.
                it_methods-objectkey = v_objectkey.
                APPEND it_methods.
    "Note v_refnumber has 1 to 1 relation ship with the components table, if you want to change First component in it_components1 then you have to enter value '1' here for v_refnumber.
    it_methods-method = 'SAVE'.
            APPEND it_methods.
    4 . Call
    CALL FUNCTION 'BAPI_ALM_ORDER_MAINTAIN'
              TABLES
                it_methods   = it_methods
                it_component = it_components1
                return       = it_bapiret2.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

  • Issues with flash and other adobe products.

    Ok, so i've been using flash player for quite a number of years now aswell as other products like acrobat reader when i used windows, over the years flash player has developed into a totally inneffecient and almost unusable product. on top of the security issues of past with flash player and especially acrobat reader, with remote code execution vulnerabilities, i have, as have thousands of others noticed a very large decrease in performance with flash.
    i should note that a year or two ago, i could play HD flash content no problem, both 720 and 1080 resolutions, full screen without any issue. i would expect it to take up a decent portion of cpu cycles, which it did, i use to be able to run flash content at 720 with about 30 - 50% cpu usage. now it seems with flash 10 my AMD Athlon 4000+ struggles to play even 720 videos. My cpu is by no means a top performer, it is however capable of handling somewhere in the region of a billion instructions per second. for video content to require that amount of data to be handled is rediculous.
    HD content played back on my local machine using a different codec, my cpu barely even uses 5 - 10% cpu time, not only that, these videos have roughly about the same compression rates as flash videos. i just don't understand how flash can require so much resources without taking into account innefficient and bloated code.
    today i tried to access a web page that required flash content to display images, it was not a video, but an image database, going from one page to the next took somewhere in the region of 20 - 30 seconds, while my cpu maxed out at 100% and firefox stopped responding, which is totally unnacceptable.
    it wouldn't normally be a problem if there were good alternatives, but there aren't any, im stuck with this piece of crap software if i want to view any flash content. the only real alternative is to upgrade, which i am not prepared to do if the next version of flash is just going to push those boundries even further for features i don't need.
    my proposal is to:
    1. rewrite the code with effeciency rather than new features in mind, if that means getting able programmers in, then so be it.
    2. make flash modulous, where the basic package provides capabilties to play flash content and separate plugins to provide for all the individual unnecessary features that are not required for basic flash content. surely you can build a package that provides all those plugins for regular users and a basic package + optional plugins for those who know what they want or need.
    it really makes no sense why such a large corporation with all this experience to provide a product that quite simply.. sucks, well it does actually, either your programmers are incapable of creating a stable, efficient product or you are purposly trying to push hardware upgrades onto people. lets not forget that flash content is huge business on the web, adobe flash player has a strangle hold on that market, it would be naive to think that hardware vendors have not approached adobe with specifications to further make the money wheel go round.
    sort it out, because i for one, am in the process of completely removing my dependancy on adobe flash, if the right product comes along, others will do to, in droves. it's a bubble that is going to burst and there is no way back when you have millions of lines of quite frankly, amateurish code.

    Eric,
    The GTX 650 would be priced slightly higher than the GT 640 - and then, the OP would have to "settle" for only 1GB of graphics RAM instead of 2GB. The GTX 650 is currently not available with 2GB of RAM.
    Both the GT 640 and the GTX 650 are based on the same GPU - the GK107, with 384 CUDA cores. The two major differences are that the GK107 on the GTX 650 is clocked higher than the one on the GT 640, and that the GTX 650 has almost triple the memory bandwidth of the GT 640 (80 GB/s versus 28.8 GB/s).

  • I purchased Adobe Acrobat XI Pro - Student and Teacher Edition but cannot activate it even after it has deactivated and replaced my old Acrobat 8. How do I get a serial number and activate the product?

    I purchased Adobe Acrobat XI Pro - Student and Teacher Edition but cannot activate it even after it has deactivated and replaced my old Acrobat 8. How do I get a serial number and activate the product?

    I have the same  problem. Have paid. Messages say I have downloaded it but the file is inaccessible apparently download is somewhere on my hard disk. How do I find it?? Is there not help at an Adobe phone service. If so what is the number to call??
    Roger Broughton

  • INST-07408: Unable to install or configure the product on a 32-bit JVM on a 64-bit machine. Make sure to install and configure the product in supported modes.

    Hi there, i have an issue installing oracle forms and reports. its throwing this error"INST-07408: Unable to install or configure the product on a 32-bit JVM on a 64-bit machine. Make sure to install and configure the product in supported modes." on step 5. I have jdk 64bit installed, weblogic server was installed successfully but iam getting stuck somehow.
    Below are details of my pc.
    OS Name    Microsoft Windows 7 Professional
    Version    6.1.7601 Service Pack 1 Build 7601
    Other OS Description     Not Available
    OS Manufacturer    Microsoft Corporation
    System Name   ...........-HP
    System Manufacturer    Hewlett-Packard
    System Model    HP ProBook 4530s
    System Type    x64-based PC
    Processor    Intel(R) Core(TM) i5-2450M CPU @ 2.50GHz, 2501 Mhz, 2 Core(s), 4 Logical Processor(s)
    BIOS Version/Date    Hewlett-Packard 68SRR Ver. F.23, 09/03/2012
    SMBIOS Version    2.6
    Windows Directory    C:\windows
    System Directory    C:\windows\system32
    Boot Device    \Device\HarddiskVolume1
    Locale    United Kingdom
    Hardware Abstraction Layer    Version = "6.1.7601.17514"
    User Name    ...........-HP\................
    Time Zone    South Africa Standard Time
    Installed Physical Memory (RAM)    4.00 GB
    Total Physical Memory    3.94 GB
    Available Physical Memory    1.00 GB
    Total Virtual Memory    7.87 GB
    Available Virtual Memory    1.25 GB
    Page File Space    3.94 GB
    Page File    C:\pagefile.sys

    To clarify further....  It is important to note that Forms/Repors 11.1.2.x software (including WLS and JDK) must be of the same archetecture as the machine.  In other words, you cannot use the 32bit Forms/Reports 11.1.2 software on 64bit Windows.  If you are using a 64bit OS, you must install the 64bit software.  Again, this would include Forms/Reports, WLS, and JDK

Maybe you are looking for

  • GL balance carry forward special period 13 to new fiscal year and Rec acct

    Hi, would like to seek for your advice as below question/problem. a) User now is doing the year end closing. Normally the closing is up to the period 12 and for the purpose of track the adjustments made by the management and auditors user post to per

  • File adapter - Unexpected exception running file2xmbprocessor

    Hallo, I've a fileadapter running and a couple of time the adapter is running fine. After a while I get the following exception: <i>Unexpected exception running file2xmbprocessor java.util.NoSuchElementException at java.util.TreeMap$EntryIterator.nex

  • How to delete productgroups in SRM that where replicated from R/3?

    Hello, When I change for example the description of a productgroup in R/3 OMSF, and subsequently download the table content via R3AS, the changes are replicated to SRM. When I delete a productgroup in R/3 and use R3AS the productgroups aren't deleted

  • How to run an OWB 11gR2 process flow using OEMS Jobs?

    How to run an OWB 11gR2 process flow using OEMS 11g Jobs? In other words iam trying to create an Oracle Enterprise manager job for scheduling and running an OWB Process flow. Can any one of you please route me to a documentation for the same,or enlis

  • VISA Shared resources by lock CVI functions

    Hello, Attach to the post : http://forums.ni.com/t5/LabWindows-CVI/VISA-Shared-resources/m-p/1000856#M43685 I use LabWindows/CVI 2013 SP2. I have a share VISA problem : 2 functions VISA (Read and Write), on the same ressource. I want to protect the a