Spyke

Posts

steam·SteambyJelleWho

Steam controller (2026) lizard mode shortcuts

I have been on the hunt for what exact shortcut the controller hides from us. But there is a steam menu (controllers, advance, show more, at the button) that shows them!

Quickly want to change your volume? Try steam key + left joystick!

Sadly you can not change anything here, altought the menu shows you you can, nothing will be saved after you leave a menu. (I'm not a fan to put the left mouse button on the right button)

A few of them I manually found before written out, also for the people without images:

hold A + R1 + Steam
To use Puck wireless mode right

hold A + L1 + Steam
Start Puck wireless mode left

hold B + R1 + Steam Start Bluetooth mode

When on (solid white)

Steam+Y Turn off quickly

Hol steam (10s) Turn off

Steam + left joystick up/down Change volume level

R4 + R5 + L4 + L5 + Steam Backpack mode (ignore buttons until this combo is used again or USB)

Steam + Right trackpad/joystick Mouse movement

Steam + X On screen keyboard

Steam + R1 Take screenshot

Steam + Menu ALT+TAB

Steam + D-pad right Enter key

View original on lemmy.world

Changing Chromecast remote buttons

As many of you probably know, Google does not allow you to change the buttons of their chromecast remote. We don't use Netflix at all, but we use Jellyfin. I just though of it and tested it, but Home assistant allows you to track the chromecast and functionality replace one app with another. Making the button now open the jellyfin app

alias: Replace google chromecast nexflix with whoflix
description: >-
  Google does not allow you to re-map the netflix button, but we can launch
  jellyfin when its trying to launch netflix. And thus effectivly replacing the
  button
triggers:
  - trigger: state
    entity_id:
      - remote.woonkamer_tv
    attribute: current_activity
    to:
      - com.netflix.ninja
conditions: []
actions:
  - action: media_player.play_media
    metadata: {}
    target:
      entity_id: media_player.woonkamer_tv
    data:
      media:
        media_content_id: org.jellyfin.androidtv
        media_content_type: app
mode: single
View original on lemmy.world

Automated dishwasher state

I've already added a LED strip below the kitchen to give some ambient and status lighting (ESP32 with WS2812B). And I also already had a power plug that measured the power (Athom smart plug V2). I've now also a simple door sensor (aqara zigbee). I drilled a hole in the neighbourinf cabinet and embedded some magnet, and placed the door sensor on the dishwasher door. Our dishwasher has the feature to auto open the door when it's done to air dry it.

This all I now have put into a automation to calculate when the dishwasher is; Planned, Running, Finisched, and now emthied too!

No more asking if the dishwasher is going to run tonight, or if its clean. It will tell you with the LED strip!

description: ""
triggers:
  - type: power
    device_id: c1ec0c6f63d1ecd5d3db78555bcdc1b0
    entity_id: ff1351d92d6d4c744974dfbe0a5ad055
    domain: sensor
    trigger: device
    above: 1
    id: sence
  - type: power
    device_id: c1ec0c6f63d1ecd5d3db78555bcdc1b0
    entity_id: ff1351d92d6d4c744974dfbe0a5ad055
    domain: sensor
    trigger: device
    above: 10
    for:
      hours: 0
      minutes: 1
      seconds: 0
    id: running
  - type: power
    device_id: c1ec0c6f63d1ecd5d3db78555bcdc1b0
    entity_id: ff1351d92d6d4c744974dfbe0a5ad055
    domain: sensor
    trigger: device
    below: 1
    for:
      hours: 0
      minutes: 1
      seconds: 0
    enabled: true
    id: done
  - type: not_opened
    device_id: 7e88b779bd6eb8ca35bf872479867fca
    entity_id: 4dbe83576f52026e60073aea8ea105b0
    domain: binary_sensor
    trigger: device
    for:
      hours: 0
      minutes: 0
      seconds: 10
conditions:
  - alias: from_state != unavailable
    condition: template
    value_template: "{{ trigger.from_state.state != 'unavailable' }}"
actions:
  - alias: Change state
    choose:
      - conditions:
          - condition: state
            entity_id: input_text.vaatwasser_state
            state: "off"
          - condition: numeric_state
            entity_id: sensor.smart_plug_23_power
            below: 10
            above: 1
        sequence:
          - data:
              value: sensing
            action: input_text.set_value
            target:
              entity_id: input_text.vaatwasser_state
      - conditions:
          - condition: numeric_state
            entity_id: sensor.smart_plug_23_power
            above: 10
        sequence:
          - data:
              value: running
            action: input_text.set_value
            target:
              entity_id: input_text.vaatwasser_state
      - conditions:
          - condition: state
            entity_id: input_text.vaatwasser_state
            state: running
          - condition: numeric_state
            entity_id: sensor.smart_plug_23_power
            below: 1
        sequence:
          - data:
              entity_id: input_text.vaatwasser_state
              value: done
            action: input_text.set_value
    default:
      - data:
          entity_id: input_text.vaatwasser_state
          value: "off"
        action: input_text.set_value
  - action: script.update_and_shown_led_strip_status
    metadata: {}
    data: {}
mode: queued
max: 3
View original on lemmy.world
diy·Do It YourselfbyJelleWho

Perfected my automated fluid dispensing machine

It took some time but we have finally found an fast and efficient way to dispense any fluid.

This also includes any surface tension like water/alcohol. It will also keep any carbonation. And it can handle plastic and glasses bottles with an wide arrangement of opening diameyer. And it's all done food safe!

This is part of a cocktail mixer we have been designing for the fast few years. If you are really intrested you can findt it on Github.

https://i.imgur.com/NVBHXgC.gifvOpen linkView original on lemmy.world

You reached the end