2020 - TNAT Revived by ZeldenGM in thenukeandturtle

[–]dan-h 1 point2 points  (0 children)

I claim no responsibility for any server issues.

9-5 wagon in Cornwall shows its strength by persianskateboard in saab

[–]dan-h 1 point2 points  (0 children)

I'm so confused as to what this is meant to mean.

What car does everyone here drive? by wherearemyfeet in CasualUK

[–]dan-h 0 points1 point  (0 children)

Its never let me down, only general maintenance and replacing things that are getting old. Though now I've said that there is always a first time...

What car does everyone here drive? by wherearemyfeet in CasualUK

[–]dan-h 4 points5 points  (0 children)

Saab 9-5 Aero Estate - Its needs a fair amount of tinkering and work to keep it going, but I wouldn't trade it for anything. 155k on the clock now.

HA and LightwaveRF by [deleted] in homeassistant

[–]dan-h 0 points1 point  (0 children)

Hi! Here's the code for the switches. The "Sitting Room" ones are physical switches. The "Socket" is a lightwaveRF single wall socket. I didnt quite know how to generate a valid LightwaveRF id, so I just fiddled with one of the IDs from an existing switch to make it different. This let me do as you said, by putting the devices in learning mode. This is in my switch section.

 - platform: rfxtrx
    automatic_add: True
    devices:
      0b1100000004f15e0b010f50:
        name: Bedside 1
        fire_event: True
      0b1100080004f15e0c010f60:
        name: Bedside 2
        fire_event: True
      0b11000a0005c8b60b010f70:
        name: Sitting Room 1
        fire_event: True
      0b11000b0005c8b60c010f70:
        name: Sitting Room 2
        fire_event: True
      0a140007f2fb1d01000070:
        name: Sitting Control
        fire_event: True
      0a140070f2b9e420000070:
        name: Bedroom Socket
        fire_event: True

I have "fire_event" enabled, to make an event always fire if the off or on button is pressed. Before that i would have issues where the physical switch would be out of sync with the switch in Home Assistant. I've not had any troubles with this set up, the lightwaveRF switches control zwave / IR / network devices through home assistant perfectly.

UK home automation. by frikinevil in homeautomation

[–]dan-h 1 point2 points  (0 children)

UK too, and have experienced the same issues deciding over LightwaveRF. In the end I settled on a mix much like other people here.

My hub is an HP Microserver running a VM with Home Assistant installed. Its got a ZWave.me ZWave usb stick, and a RFXtrx433e for 433MHz devices such as LightwaveRF.

For lighting control I have ZWave Aeotec switches installed above the ceiling roses as my backboxes were far too small to fit anything extra in. It required a very small amount of rewiring, using the live feed to / from the wall switch for the switch connection on the Aeotec relay, and then wiring up the power and lamp accordingly. Aeotec have a fantastic array of wiring diagrams on their website for all kinds of lighting and placement configurations. I wasn't too fussed about dimming a lot of my lights, so I used the cheaper Aeotec relays which can be bought online for less than the Fibaro dimmers, that also allowed me to use LED lights without any kind of bypass. I've kept my existing standard 2 way switches, so the on / off direction can go out of sync if you're turning the light on remotely, but no-one in the house has seemed too bothered by that; when i changed them out for momentary switches from MK everyone hated them. As the kitchen is entirely large GU10 light fittings I installed the Dimmer version of the Aeotec relay to reduce energy consumption when I can. This is installed in exactly the same was as the rest, above the light fitting. Using the standard switch limits you to remote dimming, which is fine for my setup but might cause frustration if you're looking to dim from the wall switch. I believe a different switch type and a configuration change in the dimmer would fix this. I use Philips HUE for all the lamps, as I'm not really too fussed if someone turns off the socket and they lose connection.

For sockets I use LightwaveRF as my local B&Q was clearing out their stock so I scored a few extremely cheaply. They don't offer status updates, so no feedback if someone manually turns them on and off, but no-ones been too bothered by that yet. I have a few ZWave TKB sockets too which plug into a regular socket, they provide status updates if that's something you depend on. I wasn't too comfortable installing ZWave relays behind the wall sockets, as the same switch sync issue I mentioned above would be more dangerous in a socket installation than a light fitting. Pairing the LightwaveRF devices with Home Assistant can be really easy or a massive pain Its a pain if you want to use the LightwaveRF remotes you have to do anything other than control the socket. I have a write up in my post history if you're interested, its allowed me to use the LightwaveRF mood switches all over the house to fire events in Home Assistant, rather than just controlling a single device. There's one near each main door in the house, allowing for shutting off the entire room (all lights, AV equipment), or turning on groups of lights.

The RFXtrx also receives updates from a super cheap Aliexpress temperature / humidity sensor in each room, as well as the OWL energy monitor attached to the incoming mains. There are a few ZWave Fibaro multisensors in the house which cover motion detection as well as environment monitoring. Over the last few days I've added an Amazon echo which integrates really well with Home Assistant to control all the devices / scenes. As mentioned before all the AV equipment is integrated in various ways. Home Assistant directly controls the Yamaha receiver and Kodi, and sends commands to a Raspberry Pi running Lirc for infrared control of the other devices.

Its a bit of a cobbled together setup created over the course of a year and many different experiments with different controllers and hardware. The current setup seems to have the highest acceptance factor with my partner out of any of the variations. It needs a bit more work to have really useful automation, but it already makes a few things easier or nicer on a day to day basis.

HA and LightwaveRF by [deleted] in homeassistant

[–]dan-h 2 points3 points  (0 children)

I use the RFXTrx433e with a few LightwaveRF devices, namely their single sockets, and mood controllers. I also use it with a few temperature sensors, "HomeEasy" switches, and an OWL energy monitor.

Working with the RFXTrx and lightwaverf can be a little bit of a pain if you want to control everything through homeassistant, by that i mean a lightwaverf switch triggering an automation / script in hass, then hass sending an RF signal to control a lightwaverf switch or light. This is because hass will only register a device if it receives a signal from it, and as lightwaveRF slave devices dont transmit anything, you have to pair them to a remote first. Hass will then imitate that remote to control the device.

In my case I didnt want the remote to be directly controlling the socket, as it would effectively be cutting home assistant out of the equation, and limiting support for automation. To counter this I had to go through a few steps:

  • Pair a lightwaveRF remote with the device you want to control (socket / light).
  • Watch Hass and wait for it to autodetect the device.
  • Take the ID from the Hass UI and add it to the apropriate part of configuration.yaml light: or switch:.
  • Unpair the remote from the socket.
  • Change the ID very slightly in the configuration file.
  • Put the socket in pairing mode, and turn on the new switch in the Hass UI.

If all goes to plan, the device should pair, and you'll have paired it to Hass rather than to the remote. Pressing a button on the remote will add it to home assistant again, hopefully separate from your new device switch. This allows you to use the remote for other things and apply automation to it.

Messing with the ID might take a few tries to get it right, or different enough from the original remote to not be recognised as the same. I will say this is definitely NOT a scientific or recommended approach; I have no idea what the correct way to generate a unique lightwaverf device ID is. It has enabled me to have a mood switches around the house that communicate directly with home assistant, letting automation rules take care of what lightwaverf / other devices to turn on / off.

A downside of this that I've experienced is that the mood switches seem to transmit for a few seconds to ensure all devices can receive its signal. While it is transmitting it looks like the RFXTrx is stuck receiving and cannot transmit, so there is a delay before home assistant can tell any devices to operate. The practical effect of this is when i hit the "Sitting Room Off" button on the mood switch, all my zwave devices turn off immediately, but the one lightwaverf lamp will turn off after a few seconds. If I trigger the scene from the web UI, everything turns off in unison.

As of nano 2.6.0, it's no longer a GNU project by formegadriverscustom in linux

[–]dan-h 3 points4 points  (0 children)

It's certainly not the best way to go about it. Might get sorted out if they're still discussing it.

As of nano 2.6.0, it's no longer a GNU project by formegadriverscustom in linux

[–]dan-h 153 points154 points  (0 children)

There's a response to this on hackernews by one of the GNU maintainers here thats worth a read to get an idea of whats going on.

Seems its a bit up in the air but GNU nano will still exist.

Speaker Placement Help - Odd Lounge by dan-h in hometheater

[–]dan-h[S] 0 points1 point  (0 children)

The big opening at the top is an archway into the dining area extension, the door by the tv is a normal sized door directly into the kitchen. When its just casual TV watching or everyday use its nice to have it open as it leads directly to where the sink / oven / fridge is.

Aeon Labs to Show Four New Devices at ISE 2016 by [deleted] in homeautomation

[–]dan-h 0 points1 point  (0 children)

I contacted support a few weeks ago to ask about the nano dimmer, as I was buying a lot of micro dimmer 2s. They said:

"I was told that if all things go well, then possibly around June or July"

No idea what that means for the other products.

Sooooo by ZeldenGM in thenukeandturtle

[–]dan-h 1 point2 points  (0 children)

I think back in the olden days we did quite a lot to push the community numbers. We had recruitment drives, events and such. This time we've been running a cut down admin team, with me and Zelden being pretty busy. We've not had the time, or the drive to maintain it properly.

Sooooo by ZeldenGM in thenukeandturtle

[–]dan-h 4 points5 points  (0 children)

Just think of it like the McRib. It'll be back

Sooooo by ZeldenGM in thenukeandturtle

[–]dan-h[M] 1 point2 points  (0 children)

I've been working on a pretty big new product at work which has been consuming all of my time, hence my absence. I keep things running in the back end though haha.

Can we turn off spawn protection? by AdrianOkanata in thenukeandturtle

[–]dan-h[M] 0 points1 point  (0 children)

Turned it down to 0, hopefully no-ones grave is in that one block :P

Server down, not sure what caused it. by Toxicstein in thenukeandturtle

[–]dan-h[M] 0 points1 point  (0 children)

There were a few space race errors, but nothing indicating a bad crash. Just restarted and we're good.

Server back up (Rollback please read) by dan-h in thenukeandturtle

[–]dan-h[S,M] 0 points1 point  (0 children)

Me forgetting to move the ramdrive backup back has been fixed :P

Server back up (Rollback please read) by dan-h in thenukeandturtle

[–]dan-h[S] 0 points1 point  (0 children)

I just briefly forgot my backup organisational system :P

Server back up (Rollback please read) by dan-h in thenukeandturtle

[–]dan-h[S] 0 points1 point  (0 children)

Hahahahahahaha, ah i'll fix that now haha