sorted by: new top controversial old
[-] joat_mon@lemmy.world 6 points 1 month ago

Yeah, just use the Beta, it's extremely stable. Don't get it from the Play Store though, as you've seen it hasn't been updated in years. Just get it from their GitHub.

[-] joat_mon@lemmy.world 9 points 1 month ago

I've tried quite a few after leaving Nova a few years ago and have settled on Lawnchair. It seems to be the most stable and is under active development.

[-] joat_mon@lemmy.world 3 points 4 months ago

Best alternative for WhatsApp would be Signal

[-] joat_mon@lemmy.world 11 points 5 months ago

I'd recommend checking out Gadgetbridge. It is an open source app, with no network permission requirements, that replaces the OEM app for a large number of watches. I'm running an Amazfit GTS 4 with it and it has been almost flawless.

[-] joat_mon@lemmy.world 36 points 7 months ago

The front fell off! That's not very typical.

[-] joat_mon@lemmy.world 1 points 8 months ago

What is the structure of the Nearby URL when manually entering coordinates?

[-] joat_mon@lemmy.world 4 points 8 months ago
[-] joat_mon@lemmy.world 2 points 9 months ago

I'm not wanting to enter the giveaway but just wanted to say what a lovely thing to do for the community.

Happy Holidays everyone

[-] joat_mon@lemmy.world 2 points 9 months ago
[-] joat_mon@lemmy.world 1 points 9 months ago

I've added my Docker Compose files in a reply to my original comment which may help make things a little easier for you when you get to setting it up yourself.

[-] joat_mon@lemmy.world 2 points 9 months ago

I've replied to my own original comment for better visibility if you want to check that.

[-] joat_mon@lemmy.world 6 points 9 months ago* (last edited 9 months ago)

For those asking, here are my Docker Compose files for Piper (text-to-speech), Whisper (speech-to-text), and OpenWakeWord (allows the use of a wake word with things like the Atom Echo)

Piper

version: '3.3'
services:
  wyoming-piper:
    container_name: wyoming-piper
    image: 'rhasspy/wyoming-piper'
    ports:
      - "10200:10200"
    volumes:
      - '/docker/containers/wyoming-piper/data:/data'
    command: [ "--voice", "en_US-danny-low" ]
    restart: always

Note: The voice can be changed depending on your preference. Listen to the possible options here.

Whisper

version: '3.3'
services:
  wyoming-whisper:
    container_name: wyoming-whisper
    image: 'rhasspy/wyoming-whisper'
    ports:
      - "10300:10300"
    volumes:
      - '/docker/containers/wyoming-whisper/data:/data'
    command: [ "--model", "base", "--language", "en" ]
    restart: always

Note: The model can be changed depending on the power of your system. See possible options here.

OpenWakeWord

version: '3.3'
services:
  wyoming-openwakeword:
    container_name: wyoming-openwakeword
    image: 'rhasspy/wyoming-openwakeword'
    ports:
      - "10400:10400"
    volumes:
      - '/docker/containers/wyoming-openwakeword/data:/data'
      - '/docker/containers/wyoming-openwakeword/custom:/custom'
    command: --preload-model 'ok_nabu' --custom-model-dir /custom
    restart: always

Note: Even though the model for the wake command is set in the Compose file, this can easily be changed in your HA Assist settings.

After they are up and running, you can just manually add the Integrations to HA which will create the Wyoming Protocol Integration. Then go back to your Assist settings and they should be available in the relevant dropdowns.

I hope this helps

view more: next ›

joat_mon

joined 1 year ago