🎙️ Say "Caretaker" before speaking!
(Try: "Caretaker, open contact page", "Caretaker, play video one", or "Caretaker, what is Burial Cloud?")
🕊️ Daily Word of Comfort
Loading...
💡 Try clicking these quick commands:
"What is Burial Cloud?"
"Play video one"
"Show slideshow"
"Go to contact page"
function activateCaretaker() {
navigator.mediaDevices.getUserMedia({ audio: true })
.then(() => {
document.getElementById('activate-btn').style.display = 'none';
document.getElementById('caretaker-status').innerHTML = "🟢 Caretaker is Listening...";
logChat("Caretaker: Microphone ready. Say “Caretaker” followed by a command.");
startListening();
})
.catch(err => {
document.getElementById('caretaker-status').innerHTML = "🔴 Microphone blocked";
logChat("System: Please allow microphone access and click Activate again.");
});
}