What you need to know to use Amazon Alexa with your Schlage smart locks.


.main_nav li.showSingle { /*padding-right: 50px;*/
}

.main_nav li.showSingle:first-child { /*padding-left: 62px;*/
}

/* Close Animation Start */
function resetCloseState() {
$(‘.close-img’).css(‘background-position’, ‘0px -1170px’);
}

function startAnimateClose(attrClose) {
setTimeout(function () {
var x = -1170;
(function animateBack() {
timer = setTimeout(function () {
if ((x += 45) = -1170) {
$(objClose).css({‘background-position’: ‘0px ‘ + x + ‘px’});
animateFwd();
} else {
closeContainer(objClose);
}
}, 20);
})();
}, 0);
}

function closeContainer(closebtn) {
if ($(closebtn).attr(‘id’).indexOf(‘closeDropDown’) != -1) {
$(“.mainmenu-wrap”).slideUp(“slow”);
} else if ($(closebtn).attr(‘id’).indexOf(‘closeSearch’) != -1) {
$(‘.mainmenu-wrap’).slideUp(function () {
$(‘.mainmenu-wrap’).removeClass(‘menu-search’);
});
$(“#search_div”).slideUp();
$(“#search_box”).slideUp();
$(“body”).css(“overflow-y”, “auto”);
//$(“.overlay-wrap”).hide();
$(“.modal-backdrop”).addClass(“modal-backdrop-loadmask hide”);
} else if ($(closebtn).attr(‘id’).indexOf(‘closeMsgBox’) != -1) {

$(“#tradeprofessional_form”).slideUp(“slow”);
$(“#homeowner_form”).slideUp(“slow”);
$(“body”).css(“overflow-y”, “auto”);
$(“.modal-backdrop”).addClass(“modal-backdrop-loadmask hide”);
} else {
$(‘.modal’).modal(‘hide’);
}
}

/* Close Animation End */

/* Search Box Show Hide */
function closeSearchMobile() {
$(“#search_div”).slideUp();
$(“body”).css(“overflow-y”, “auto”);
//$(“.overlay-wrap”).hide();
$(“.modal-backdrop”).addClass(“modal-backdrop-loadmask hide”);
}

function showSearchMobile() {
$(‘.mainmenu-wrap’).hide();
resetCloseState();
$(“#search_div”).slideDown();
$(“.modal-backdrop”).removeClass(“modal-backdrop-loadmask hide”);
$(“.targetDiv”).hide();
$(“body”).css(“overflow-y”, “hidden”);
$(“.overlay-wrap”).show();
setTimeout(function () {
startAnimateClose(‘closeSearchBoxMobile’)
}, 100);
}

$(document).ready(function () {
/** Code to target IE11 **/
var ua = navigator.userAgent;
if ((ua.match(/rv:11.0/i)) || (ua.match(/Edge/i))) {
$(‘body’).addClass(‘ie11-above’);
}
/** Code to target IE11 ends **/

$(‘#dl-menu’).click(function () {
$(‘#dl-menu’).dlmenu();/**For Mobile Menu**/
});
$(‘.dl-trigger’).click(function () {
$(‘.mainmenu-wrap’).hide();
closeSearchMobile();
});
$(‘#search_icon’).click(function () {
if ($(‘#search_div’).is(‘:visible’)) {
closeSearchMobile();
} else {
showSearchMobile();
}
;
});

$(‘#search_button’).click(function () {
if ($(‘#search_box’).is(‘:visible’)) {
$(‘.mainmenu-wrap’).slideUp(function () {
$(‘.mainmenu-wrap’).removeClass(‘menu-search’);
});
$(“#search_box”).slideUp();
$(“body”).css(“overflow-y”, “auto”);
//$(“.overlay-wrap”).hide();
$(“.modal-backdrop”).addClass(“modal-backdrop-loadmask hide”);
} else {
resetCloseState();
$(“.targetDiv”).hide();
$(“#search_box”).slideDown();
$(“body”).css(“overflow-y”, “hidden”);
//$(“.overlay-wrap”).show();
$(“.modal-backdrop”).removeClass(“modal-backdrop-loadmask hide”);
$(‘.mainmenu-wrap’).addClass(‘menu-search’);
$(‘.mainmenu-wrap’).show(function () {
setTimeout(function () {
startAnimateClose(‘closeSearchBox’)
}, 200);
});

}
;
});

/* $(‘#closeSearchBoxMobile’).click(function () {
$(“#search_div”).slideUp();
$(“body”).css(“overflow-y”, “auto”);
$(“.overlay-wrap”).hide();
});
$(‘#closeSearchBox’).click(function () {
$(‘.mainmenu-wrap’).slideUp(function () {
$(‘.mainmenu-wrap’).removeClass(‘menu-search’);
});
$(“#search_box”).slideUp();
$(“body”).css(“overflow-y”, “auto”);
$(“.overlay-wrap”).hide();

}); */

/** Navigation Show Hide on Click **/
/*$(‘.main_nav .showSingle’).click(function (e) {
var $this = $(this);
dataAttr = $this.find(‘a’).attr(“data-toggle”);
if ($(“.main_nav .mainmenu-wrap #” + dataAttr + “”).css(‘display’) == “none” || $(“.main_nav .mainmenu-wrap”).css(‘display’) == “none”) {
resetCloseState();
$(“#search_box”).hide();
$(“body”).css(“overflow-y”, “auto”);
//$(“.overlay-wrap”).hide();
$(“.modal-backdrop”).addClass(“modal-backdrop-loadmask hide”);
$(“.main_nav .targetDiv”).hide();
$(‘.main_nav .mainmenu-wrap’).removeClass(‘menu-search’);
$(“.main_nav .mainmenu-wrap #” + dataAttr + “”).show();
$(“.main_nav .mainmenu-wrap”).slideDown(“slow”, function () {
startAnimateClose(‘closeDropDown’);
});
}
});

$(‘.mainNavMobile .showSingle’).click(function (e) {
var $this = $(this);
dataAttr = $this.find(‘a’).attr(“data-toggle”);
if ($(“.mainNavMobile .mainmenu-wrap #” + dataAttr + “”).css(‘display’) == “none” || $(“.mainNavMobile .mainmenu-wrap”).css(‘display’) == “none”) {
resetCloseState();
$(“#search_div”).hide();
$(“body”).css(“overflow-y”, “auto”);
//$(“.overlay-wrap”).hide();
$(“.modal-backdrop”).addClass(“modal-backdrop-loadmask hide”);
$(“.mainNavMobile .targetDiv”).hide();
$(‘.mainNavMobile .mainmenu-wrap’).removeClass(‘menu-search’);
$(“.mainNavMobile .mainmenu-wrap #” + dataAttr + “”).show();
$(“.mainNavMobile .mainmenu-wrap”).slideDown(“slow”, function () {
startAnimateClose(‘closeDropDownMobile’);
});
}
});

var interval = null;
var DivHide = false;
var timeout;

function HideDiv() {
if ((DivHide == true) && (!timeout)) {
$(“.mainmenu-wrap”).slideUp(“slow”);
clearInterval(interval);
DivHide = false;
}
}

var dataAttr;
$(“.main_nav > ul”).click(function () {
timeout = setTimeout(function () {
timeout = null;
DivHide = false;
interval = setInterval(HideDiv, 1000);
$(“.mainmenu-wrap”).stop(true, true).slideDown(“slow”);
}, 500);

}, function () {
clearTimeout(timeout);
timeout = null;

DivHide = true;

});

$(“.mainmenu-wrap”).click(function () {
DivHide = false;
$(“.mainmenu-wrap #” + dataAttr + “”).stop(true, true).show();
}, function () {
DivHide = true;

});
*/

/* $(function () {
$(“.main_nav li.showSingle”).click(function () {
$(“.main_nav li.showSingle”).removeClass(“current”);
$(this).addClass(“current”);
})

$(“.dropdown-head .close-img”).click(function () {
var _this = $(this).parents(“.main_nav”).find(“.showSingle”);
var _this2 = $(this).parents(“.main_nav”).find(“.selected”);
_this.removeClass(“current”);
_this2.addClass(“current”);
})
})*/

$(“#closeMsgBox”).click(function () {
$(“#signup_success_box”).slideUp();

$(“body”).css(“overflow-y”, “auto”);
//$(“.overlay-wrap”).hide();
$(“.modal-backdrop”).addClass(“modal-backdrop-loadmask hide”);
});
$(“#closeErrorMsgBox”).click(function () {
$(“#signup_error_box”).slideUp();

$(“body”).css(“overflow-y”, “auto”);
//$(“.overlay-wrap”).hide();
$(“.modal-backdrop”).addClass(“modal-backdrop-loadmask hide”);
});

});

$(“.press-enter”).click(function () {

// Analytics tracking Code
var searchKeyword = $(this).closest(“.search-box”).find(“.search-query”);
searchKeyword = searchKeyword.val();

// Submit the form
$(“form#faqSearchForm”).submit();
});

.msg-div {
height: auto;
overflow-y: scroll;
}

.ie11-above .flag {
right: 6px;
}

.flag:after {
background-image: url(“/etc/designs/sch-us-2/clientlibs/main/images/header-link-icon.png”);
background-repeat: no-repeat;
width: 20px;
height: 100%;
position: absolute;
right: -6px;
content: “”;
top: 0px;
-ms-transform: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
-webkit-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}

.flag:hover:after {
-ms-transform: translate(3px, -3px);
-moz-transform: translate(3px, -3px);
-o-transform: translate(3px, -3px);
-webkit-transform: translate(3px, -3px);
transform: translate(3px, -3px);
}

.flag:hover {
background-position: right top;
}

.flag:active:after {
background-image: url(“/etc/designs/sch-us-2/clientlibs/main/images/header-link-icon-hover.png”);
}

.flag {
color: #003767;
font-family: “Avenir-Book”;
font-size: 11px;
line-height: 19px;
margin-left: 70px;
margin-right: 11px;
margin-top: 30px;
padding-right: 11px !important;
padding-top: 3px;
position: absolute;
right: 0;
top: 0;

}

.flag {
display: none;
}

body p {
margin: 0;
padding: 0;
}
.blogg-detail img {
width: 100%;
height: auto;
}

.blogg-detail {
margin-top: 20px;
font: normal 18px ‘Avenir-Book’ !important;
line-height: 150% !important;
}

.blogg-detail h2 {
font-size: 22px;
line-height: normal;
font-weight: 700;
font-family: ‘Avenir-Book’;
color: #046B99;
margin-bottom: 10px;
letter-spacing: 0;
}

.blogg-detail h3 {
font-size: 18px;
line-height: normal;
font-weight: 700;
font-family: ‘Avenir-Book’;
color: #046B99;
margin-bottom: 10px;
letter-spacing: 0;
}

p.p-pad {margin: 15px 0;}

.pic-caption {
font-size: 12px;
line-height: normal;
margin-top: 7px;
text-align: center;
}
.responsive-iframe {
margin-top: 20px;
position: relative;
padding-bottom: 120%;
height: 0;
overflow: hidden;
}

.responsive-iframe-lg {
margin-top: 20px;
position: relative;
padding-bottom: 150%;
height: 0;
overflow: hidden;
}

.responsive-iframe iframe, .responsive-iframe-lg iframe {
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
}

.responsive-iframe iframe body {
overflow-y: hidden;
}

@media (max-width: 767px) {

.blogg-detail h2 {
font-size: 20px;
line-height: normal;
}
.blogg-detail {
margin-top: 20px;
font: normal 16px ‘Avenir-Book’ !important;
line-height: 130% !important;
}

.responsive-iframe {
padding-bottom: 145%;
}

.responsive-iframe-lg {
padding-bottom: 180%;}
}

What you need to know to use Amazon Alexa with your Schlage smart locks.

By emily.bailey

Friday, July 28, 2023

.sf-date {

font-size: .85em;
color: #666;
margin-left:20px;
}


Schlage smart locks and Amazon Alexa | Schlage

Schlage smart locks and Amazon Alexa | Schlage

$(“#wtbClick a”).click(function(e) {
e.preventDefault();
var destination = $(this).attr(‘href’);
setTimeout(function() { window.location.href = destination; }, 1000);
});

function eventRecord(retailer)
{
//record([‘productfacets’], {facetselection: “‘”+selectedFacets+”‘”});
var prodSku = $(‘#prodsku’).val();
var pdpprodTitle = $(‘#pdpLabelTitle’).text();
var SKUProduct = prodSku + ‘-‘ + pdpprodTitle;
if(SKUProduct == “undefined-“)
{
SKUProduct = “WTB”;
}
}

When you take advantage of the benefits of home sharing, you want the experience to be simple for you and enjoyable for your guests. Smart locks and electronic deadbolts can help achieve that.

 

READ MORE

Schlage smart locks offer superior convenience at your fingertips. And with Amazon Alexa, you don’t even need your hands for some of the best features. By integrating your Schlage smart lock with an Amazon Alexa device, all it takes is “Alexa, lock the front door” or “Alexa, is the side door unlocked?” for peace of mind without any hassle. Here’s what you need to get started.

.blog .textExt .blogg{display:none;}

Schlage Encode Plus Smart WiFi Deadbolt in matte black with Century trim on front door.

.blog .textExt .blogg{display:none;}

Which Schlage smart locks are compatible with Amazon Alexa?

All of Schlage’s smart locks are compatible with Amazon Alexa. In a few cases, you will need to connect the devices via an adapter or smart home hub. However, the Schlage Encode™ family of products, because of their built-in WiFi, do not require additional hubs or accessories.

 

  • Schlage Connect™ Smart Deadbolt, Z-Wave Plus: Aeotec hub, Homey Pro hub, or Ring Alarm base station
  • Schlage Encode™ Smart WiFi Deadbolt: No hub required
  • Schlage Encode™ Smart WiFi Lever: No hub required
  • Schlage Encode Plus™ Smart WiFi Deadbolt: No hub required

.blog .textExt .blogg{display:none;}

What can Amazon Alexa and Schlage smart locks do?

Sometimes it just feels like work to set up another home automation feature – so why is it worth it to pair your Schlage smart lock with Amazon Alexa? Here are our favorite features:

 

  • Lock and unlock the door with a simple voice command. If you’re elbow-deep in dishes but forgot to lock the door, just say “Alexa, lock the side door” – simple and easy.
  • Check the status of your lock. No more internal battle of whether to get out of bed at night to check the status of your lock – all you need to do is say “Alexa, is the front door locked?” for instant peace of mind.
  • Set up automation routines. With Amazon Alexa, it’s easy to set up automation routines like “Goodnight Alexa” to turn off lights, shut down connected devices and lock the door. We love an efficient bedtime routine.

.blog .textExt .blogg{display:none;}

How does the voice unlock feature for Amazon Alexa work?

The unlocking feature is disabled by default for your security. Log in to the Amazon Alexa app and enter your password to enable this feature in the locks device settings. When you enable unlock by voice, you will be required to set a four-digit PIN, which must be spoken before Alexa will unlock the door. When you say, “Alexa, unlock the front door,” Alexa will ask for the PIN. If the PIN is correct, Alexa will unlock the door. After three attempts to unlock the door with an incorrect PIN, Alexa will disable the unlocking feature and the door will remain locked. You can re-enable the feature by logging into the Amazon Alexa app and repeating the process.

.blog .textExt .blogg{display:none;}

What should I do if my spoken pin is compromised?

Log in to the Amazon Alexa app to change your PIN as needed. We recommend changing your PIN at regular intervals just as you would a computer password.

.blog .textExt .blogg{display:none;}

Can the unlock feature be used with Amazon Alexa smart home routines?

Both locking and unlocking can be included in Amazon Alexa routines.

.blog .textExt .blogg{display:none;}

In which countries is the Amazon Alexa voice unlock feature enabled?

This functionality is currently available in the United States only.

.blog .textExt .blogg{display:none;}

Ready to outfit your home with one of Schlage’s smartest locks yet? Visit schlage.com to learn more  and use our Get Help Deciding Tool to find the lock that’s right for you. If you have any questions as you set up your new smart home tech, reach out to us on Facebook or Twitter for help.

 

.blog .textExt .blogg{display:none;}

body {
text-align: inherit ;
}
.commercial:after {
background-image: none;
}
div.section {
margin: 0px 0;
}
@media (min-width: 768px) and (max-width: 900px) {
.main_nav>ul li a {
font-size: 12px;
}
}

/* –INC0038827 – show main nav–10.5.2020
Css for hiding main-nav drawer
.mainmenu-wrap {
background-color: #ffffff;
border-bottom: 3px solid #ffffff;
}
.close-img {
background: none;
}
.border-bottom {
display: none;
}
.dropdown-head {

display: none;
}*/

div.list div.pagination {

margin-left: 0px;

}
.pagination {
width: 100%;
}
fieldset {
width: 445px !important;
}
@media (max-width: 767px) {
.navigation {
width: 100%;
margin-right: 0px;
}
}

<!–

x

Stay up-to-date on the latest style and design tips, trends, DIY tutorials, product updates and smart home news.

var aoProtocol = location.protocol;
if ( aoProtocol.indexOf(‘http’) < 0 ) aoProtocol = 'http:';
var aoCAP = {
aid: '17883',
fid: '0017',
did: 'd-ext-0001',
server: 'mktg.schlage.com',
formId: 'blog-subscribe',
protocol: aoProtocol,
};
var aoArr = aoArr || []; aoArr.push(aoCAP);

$("form#blog_subscribe").submit(function(e){

var business = $('#business').val();
var businessRegion = $('#businessRegion').val();
var businessType = $('#businessType').val();
var send_to_sb = $('#send_to_sb').val();
var email = $('#email').val();
var subscription = $('[name="subscription"]:checked').val();
console.log("sub"+subscription);

$.ajax({
type: 'POST',
url: "/bin/allecore/formsubmit",
contentType: 'application/x-www-form-urlencoded; charset=UTF-8',
//contentType: 'application/json; charset=UTF-8',
data: {
formName: "blog_subscribe",
cusBusiness: business,
cusAlleRegion: businessRegion,
cusBusinessType: businessType,
subscription: subscription,
send_to_sb:send_to_sb,
email:email
},
dataType: 'json',
success: function (msg) {

},
error: function (xhr, ajaxOptions, thrownError) {

}
});

//alert("Hurray! I'm subscribed.");
$("#msg").show();
$("form#blog-subscribe")[0].reset();
e.preventDefault();
});

.iubenda-cs-close-btn {
color: #000 !important;
position: absolute !important;
right: 10px !important;
text-decoration: none !important;
font-size: 20px !important;
}
.blueBorder
{
background: #0081c5 none repeat scroll 0 0;
width:100%;
height:10px;
}
.Avenir_Black
{
color: #000;
font-weight: bold;
text-align: center;
padding:15px 0;
}

#blog-subscribe input[type=”email”]
{
border: 1px solid #ccc;
color: #555;
margin: 0 14px 0px 0;
padding-left: 10px;
width: 250px;
}
#blog-subscribe input[type=”radio”]
{
float:left;
margin-top:0;
margin-right: 2px;
}
.blogSubsButton{
background: #0081c5 none repeat scroll 0 0;
border: 1px solid #ccc;
color: #fff;
font-family: “Avenir-Black”;
font-size: 13px;
height: 20px;
letter-spacing: 1px;
margin-bottom: 0px;
padding: 0 16px;
}
.stayLeft
{
float:left;
}
.stayLeft.radioBtn
{
padding-left:10px;
margin-top: 2px;
}
.stayLeft.submitBtn
{
padding-left:20px;
}
.subsForm
{
width:100%;
text-align: center;
}
.subsForm form#blog-subscribe
{
margin: 0 auto;
display:inline-block;
}
.subscribeBlogForm
{
border: black 1px solid;
position: fixed;
width: 100% !important;
z-index: 99999998 !important;
bottom: -1px;
}
.footer
{
overflow: hidden;
}
.whiteBg
{
background-color: #fff;
padding-bottom: 10px;
}
#msg
{
padding-left: 10px;
}

$(document).ready(function(){
if(readCookie(“BlogSubscribe”) != null)
$(“.subscribeBlogForm.blog-subs”).hide();

});
function writeCookie(cookieName,cookieValue,exdays){
if(exdays > 0)
{
var d = new Date();
d.setTime(d.getTime()+(exdays*24*60*60*1000));
var expires = “expires=” + d.toGMTString() + ‘; path=/’;
document.cookie = cookieName + ‘=’ + cookieValue + “; ” + expires;
}
else
{
document.cookie = cookieName + ‘=’ + cookieValue + “; path=/”
}
}

function readCookie(name) {
var nameEQ = name + “=”;
var ca = document.cookie.split(‘;’);
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return null;
}

$(".iubenda-cs-close-btn").click(function(){
$(".subscribeBlogForm.blog-subs").hide();
writeCookie("BlogSubscribe", "TRUE" , 30);

});

–>

Similar Posts