Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. Tags
    3. home assistant
    Log in to post

    • OldSurferDude

      Soil Moisture Sensor Powered by solar charged battery
      My Project • battery home assistant low power eeprom solar calibration • • OldSurferDude  

      5
      1
      Votes
      5
      Posts
      38
      Views

      CrankyCoder

      @OldSurferDude I use this. https://www.homedepot.com/p/Orbit-Solenoid-for-Battery-Operated-Timer-57861/203151515 Instead of having to hold the valve open, i can just pulse it. I use a simple motor controller to pulse it and when i need to close it, pulse it in "reverse". That way I could use a battery and if it only opens once or twice a day it's only a half a second or so of draw off the battery.
    • OldSurferDude

      testing with different controllers (mqtt brokers)
      Controllers • gateway mqtt home assistant • • OldSurferDude  

      2
      0
      Votes
      2
      Posts
      28
      Views

      mfalkvidd

      @OldSurferDude use a host name for the broker in the configure command (--my-controller-url-address=). Add the host name to /etc/hosts on the rpi where the gateway is. Start the MySensors gatway. When you want to switch brokers, modify /etc/hosts again and restart the MySensors gateway.
    • OldSurferDude

      Send configuration (numbers) from HA to Arduino
      Home Assistant • arduino home assistant communication • • OldSurferDude  

      7
      1
      Votes
      7
      Posts
      49
      Views

      OldSurferDude

      @electrik Thanks, I think I can do the same with the MQTT integration (not MySensors MQTT) OSD
    • Giuseppe

      vfd compressor for heat pump / air conditioner
      Home Assistant • home assistant modbus vfd compresor • • Giuseppe  

      2
      0
      Votes
      2
      Posts
      22
      Views

      evb

      I'm afraid you're not going to get many answers to your question if you provide not more information... type of heat pump, manufacturer what are the current possibilities of controlling this heat pump photo's electric schema's ... Try to give as much as possible (technical) information...
    • alexx

      Home Assistant and smartSleep
      Home Assistant • home assistant battery powered smartsleep • • alexx  

      1
      0
      Votes
      1
      Posts
      39
      Views

      No one has replied

    • openhardware.io

      💬 Leaky - water detector
      OpenHardware.io • mqtt esp8266 home assistant water leak • • openhardware.io  

      5
      1
      Votes
      5
      Posts
      91
      Views

      Sixkillers

      @kimot Thank you for your comment & tips.
    • Misna

      Problem with light control between mysensors and HA
      Troubleshooting • arduino light home assistant • • Misna  

      3
      0
      Votes
      3
      Posts
      795
      Views

      Misna

      Hi! Going through examples and forum topics I've noticed that I'm using the wrong S-type and V-type. I'm writing a new version of the code with S_LIGHT and V_LIGHT so there is now dimmer functionality (which I don't need). Let's see if this helps.
    • pgv

      Hass.io and Ethernet Gateway on PI
      Home Assistant • home assistant ethernet gateway home-assistant • • pgv  

      9
      0
      Votes
      9
      Posts
      6174
      Views

      ghiglie

      Hi there, I'm resuming this old topic 'cause I'm trying to make a dockerized version of MySensors gateway, built on a debian image. It compiles easily, but I'm stuck on transport initialization. No one tried it? Since I'm quite new to this, I can't give now a github link, but I'll do ASAP, so we can collaborate on this.
    • alop

      Raspberry Gateway + Arduino pro mini (atmega328p) NRF24L01 (without plus +)
      Troubleshooting • nrf24l01 home assistant atmega328p arduino pro mini raspberry serial gateway • • alop  

      21
      0
      Votes
      21
      Posts
      5001
      Views

      gohan

      The RPI becomes an ethernet gateway.
    • strex

      Help Getting Started
      General Discussion • home assistant • • strex  

      2
      0
      Votes
      2
      Posts
      842
      Views

      hek

      Hi and welcome! I would say all of the examples in the build section has been converted to 2.0 (except maybe for some old build-projects created by external people). The examples with external library dependencies comes from here: https://github.com/mysensors/MySensorsArduinoExamples/tree/master/examples and standalone examples here: https://github.com/mysensors/MySensors/tree/development/examples
    • Efflon

      Sonoff + MySensors mqtt gateway + Home-Assistant
      My Project • mqtt home assistant sonoff • • Efflon  

      4
      3
      Votes
      4
      Posts
      7514
      Views

      engy

      Might be helpful for somebody... Things configuration for OpenHab2: Bridge mysensors:bridge-eth:gateway_2 [ ipAddress="192.168.178.50", tcpPort=5003, sendDelay=200, enableNetworkSanCheck=true ] { /** define things connected to that bridge here */ light sonoff01 [ nodeId="0", childId="0", requestAck=true ] }
    • xlcnd

      An HASS service to send messages to nodes
      Home Assistant • home assistant home-assistant homeautomation • • xlcnd  

      22
      0
      Votes
      22
      Posts
      5908
      Views

      xlcnd

      Let me complete the example given for the node when you use V_IR_SEND. In order to send IR codes you need to transform the code in an unsigned long: char ircode[11] = {0}; // in case your code takes the form of 0xE0E0FF0F ... if (message.type == V_IR_SEND) { String hexstring = message.getString(); hexstring.toCharArray(ircode, sizeof(ircode)); ... // get the code as an unsigned long unsigned long code = strtoul(ircode, NULL, 0); // with IRLib send the code to TV sendSAMSUNG(code); ... Very simple, ** but is hard to find an example**!
    • martinhjelmare

      Home Assistant v 0.13.1
      Home Assistant • switch serial gateway home assistant dimmer light switch • • martinhjelmare  

      13
      1
      Votes
      13
      Posts
      5903
      Views

      martinhjelmare

      I've updated the docs at home-assistant.io with sketch examples. Look at the light example. https://home-assistant.io/components/light.mysensors/#example-sketch It's what I used for testing during development. It adds an RGB sensor/actuator also besides a dimmer, but you can just remove any references to rgb in the sketch. The dimmer slider will only be visible after turning on the light and clicking the entity in the gui to bring up the more info card.
    • martinhjelmare

      Home Assistant v 0.12
      Home Assistant • sensor switch serial gateway home assistant • • martinhjelmare  

      2
      3
      Votes
      2
      Posts
      1578
      Views

      drock1985

      Thanks again @martinhjelmare Upgrade went successfully.
    • martinhjelmare

      Home Assistant v 0.11.1 with switch support
      Home Assistant • switch serial gateway home assistant • • martinhjelmare  

      53
      2
      Votes
      53
      Posts
      21840
      Views

      martinhjelmare

      @drock1985 Yes, it's possible to rename devices and also customize icons etc. See my post here: http://forum.mysensors.org/topic/2388/home-assistant-how-to-recognize-mysensors-nodes/64
    • kielnino

      Home Assistant - How to recognize MySensors nodes
      Home Assistant • home assistant • • kielnino  

      64
      0
      Votes
      64
      Posts
      45953
      Views

      martinhjelmare

      @Mufasa Yes, you can make custom names and groups of your devices. https://home-assistant.io/getting-started/devices/ Also read the blog post on customizing icons from version 0.8.