Skip to content
How to pair my ceiling fan to Google Home?
- Make sure you have connected the device to the app and working normally.
- Open Google Home app, Set up a device, choose “Works with Google”.
- Search“Carro Home”, log in with your Carro Home app account and password, then authorize and connect with Carro Home.
- Then the Google Assistant will find out the device automatically.
- Choosing a selection results in a full page refresh.
TOP
let snippetsToProcessCount = 0;
window.addEventListener('load', (event) => {
ratingSnippetObserver = new MutationObserver(function(mutations) {
if (!ratingSnippetGlobalSettings) return;
let newSnippetsToProcessCount = document.querySelectorAll('.' + ratingSnippetGlobalSettings.class + ':not([data-retrieved])')?.length || 0;
if (newSnippetsToProcessCount > 0 && newSnippetsToProcessCount !== snippetsToProcessCount) {
clearTimeout(ratingSnippetObserverTimeout);
ratingSnippetObserverTimeout = setTimeout(function() {
reinitialiseRatingSnippet();
}, 1000);
}
snippetsToProcessCount = newSnippetsToProcessCount;
});
ratingSnippetObserver.observe(document, {attributes: false, childList: true, characterData: false, subtree:true});
});