Gluco Check shutdown: what's our next step? #185
Replies: 8 comments 18 replies
-
I really hope u are someone else can find a workaround to get google announce our blood sugars I loved my morning routine find out my schedule weather medication turn on music and especially tell me my current blood sugar, thank u for everything u have done the last few years |
Beta Was this translation helpful? Give feedback.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
I did that with HA, my scene is called with a custom trigger, then HA replies with TTS. It's not a perfect solution since I don't know which speaker ask for BG and it's not the Google TTS
|
Beta Was this translation helpful? Give feedback.
-
@nielsmaerten have you seen these options (app-actions)? |
Beta Was this translation helpful? Give feedback.
-
Wow Niels!! Thank you soooo very much for the help and really detailed
instructions on how to set this up! I really and truly appreciate your
time and help. I am a heavy sleeper and have a hard time waking up.
Coupled with my inability to sense my low sugar levels until they are
really low, like in the 50s low, this helps me so much to shout out and get
a response on what my blood sugar is.
I have a few things going on right now to get ready for this but I would
like to send you a little something I am going to make to repay your
kindness, help, and in appreciation of your time. I need a bit to get
things set here to make this but if you are comfortable, please send me an
address that I may ship something out to you. It's nothing big and it'll
be one of my first attempts so it may not be perfect but I think you will
like it!
Really and truly thank you again for your help with this, I am going to dig
in on setting this up in the morning!
Thanks,
Dave
…On Tue, Apr 18, 2023 at 4:32 AM Niels Maerten ***@***.***> wrote:
Hi @Tek420 <https://github.com/Tek420>
Thanks for these kind words! 😊
I'm using the Nightscout integration for HA:
https://www.home-assistant.io/integrations/nightscout
Once you've set this up, you'll have an entity in HA called
sensor.blood_sugar that you can use to trigger automations.
Here's mine: it plays an alert on all speakers using the TTS service if my
sugar drops below 70mg/dl for 15 minutes:
alias: 🩸 Blood sugar low => Play alertsdescription: "Plays an alert on all speakers if my BG falls below 70 for more than 15 minutes. During the night, it also turns on the bedroom lights."# Trigger when BG is <70 for 15mtrigger:
- platform: numeric_state
entity_id: sensor.blood_sugar
for:
hours: 0
minutes: 15
seconds: 0
below: 70# Don't do anything if I'm not homecondition:
- condition: zone
entity_id: person.niels
zone: zone.homeaction:# If it is night...
- if:
- condition: sun
after: sunset
before: sunrise
then:# ... then turn on the bedroom lights
- service: scene.turn_on
target:
entity_id: scene.bedroom_dimmed
metadata: {}# Repeat the warning message 3 times
- repeat:
count: "3"
sequence:
- service: tts.google_translate_say
data:
entity_id: media_player.all_speakers
message: Warning: blood sugar is low. Drink a juicebox; right now!
language: en
cache: false
- delay:
hours: 0
minutes: 0
seconds: 20
milliseconds: 0mode: single
Second, if you create a script in HomeAssistant, you can call if from a
Google Home as if it were a scene.
So for the following script, if you say "Hey Google, activate Glucose
Check"... it will read out your sugar to all speakers:
alias: Glucose Checksequence:
- service: tts.google_translate_say
data:
cache: false
entity_id: media_player.all_speakers# This is the template that pulls the value from the sensor, and reads it out in the message:
message: Blood sugar is currently {{ states('sensor.blood_sugar') }}mode: single
Finally,
To get Google to activate scenes in HA, you'll have to add HA as a service
in your Google Home app.
The easiest way to do this (but not free) is by using Nabu Casa:
https://www.nabucasa.com/config/google_assistant/
It's also possible to set this up yourself, but this requires a bit more
work. Instructions are here:
https://www.home-assistant.io/integrations/google_assistant/
------------------------------
Hope this helps! Thanks for using Gluco Check all this time. Building it
has been a ton of fun.
But... as with all things from Google... they ultimately must end up on
https://killedbygoogle.com 🥲
—
Reply to this email directly, view it on GitHub
<#185 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AEBUEZXP3ZTWXTIRYJ5EW3DXBZGRTANCNFSM6AAAAAAQGFFIQY>
.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
why and what are Google up to Niel? I think it's been a great success this reading out are details and for the life in me cannot understand Google at all on this! :-( All the hard work you have put into this for them yet again takes away what is needed It more than maddens me! I looked at what you have written to help but this is way too much for me to understand how to do to change it all to be all working again! I have it at the moment until the 13 Google reading out my levels when I ask for it and at night to read out all details before I go to sleep! I would very much like to carry on using this aUTO PROCESS IF we are able to find or an easier write-up to do this process. I'm no person who as not had to do very complicated setups but this is way past my knowledge to do! Im so thankful for what you have done and I hope Google wake up to helping rather than hindering technologies going forward! Thank you and please let me know if there is any easier way or setup process for me to try! Thanks! Looks like my google devices are all going to be binned! :-( |
Beta Was this translation helpful? Give feedback.
-
Not that I could do this but could we not get Nightscout to be an App and then use App Actions to get readings from Nightscout? App Action |
Beta Was this translation helpful? Give feedback.
-
'm here wondering about diabetics who are blind. Does anyone know why Google is disabling these services? |
Beta Was this translation helpful? Give feedback.
-
In case you haven't heard, Google is shutting down voice-based apps on Assistant.
Gluco Check will shut down on June 13th, 2023. More info here: https://pages.glucocheck.app/sunset
So... now what?
I'm not sure, that's why I'm opening this discussion. Ideas are welcome.
A possible workaround
Here's an idea I had. Granted it's not fully formed. But maybe we can build from here
The best location for a service like this would, I think, be a Nightscout plugin. But I have zero experience writing plugins for that codebase.
What do you think?
Beta Was this translation helpful? Give feedback.
All reactions