Navigation

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

    • Giuseppe

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

      2
      0
      Votes
      2
      Posts
      21
      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
      24
      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
      88
      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
      793
      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 atmega328p home assistant arduino pro mini raspberry serial gateway • • alop  

      21
      0
      Votes
      21
      Posts
      5000
      Views

      gohan

      The RPI becomes an ethernet gateway.
    • strex

      Help Getting Started
      General Discussion • home assistant • • strex  

      2
      0
      Votes
      2
      Posts
      841
      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
      7513
      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
      5907
      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 dimmer home assistant light switch • • martinhjelmare  

      13
      1
      Votes
      13
      Posts
      5902
      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
      1577
      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
      21836
      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
      45933
      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.