Skip to content
  • MySensors
  • OpenHardware.io
  • Categories
  • Recent
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Feature Requests
  3. Domoticz full integration

Domoticz full integration

Scheduled Pinned Locked Moved Feature Requests
79 Posts 26 Posters 61.1k Views 11 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • qqlapralineQ Offline
    qqlapralineQ Offline
    qqlapraline
    wrote on last edited by
    #3

    I think this is not that hard.
    Actually, there is a simple enumeration of devices usable by any api.
    Furthermore, as an example you can review the recent integration of meteostick (a simple usb device for Davis meteo stations).
    Have a look at revision 1779

    QQ.

    jendrushJ 1 Reply Last reply
    0
    • qqlapralineQ qqlapraline

      I think this is not that hard.
      Actually, there is a simple enumeration of devices usable by any api.
      Furthermore, as an example you can review the recent integration of meteostick (a simple usb device for Davis meteo stations).
      Have a look at revision 1779

      QQ.

      jendrushJ Offline
      jendrushJ Offline
      jendrush
      wrote on last edited by
      #4

      @qqlapraline I am not very good at programming, so we have to wait for some talented people to do this. Looking forward for this.

      1 Reply Last reply
      0
      • epierreE Offline
        epierreE Offline
        epierre
        Hero Member
        wrote on last edited by
        #5

        Hello,

        Yes it is, domoticz doesn't have (to be confirmed) all the sensors interface intended in mysensors first, and it doesn't handle the discussion (send the metric, assign the node id and assure unicity, assure that the node id has the right sensors and that it didn't change nightly...).

        RFXtrx does all it by itself for the protocols are mainly one way (discovery but no further discussion except orders for those that can receive them). It published the result on the usb that are read, and thus removes a lot of integration issues. But on the other way, some logic is coded inside (e.g. CM180i which produces a cumulated energy usage even if it is whole house plus specialized circuits...).

        It is not that difficult to make, as the vera plugins shows, but it is a bit technical because it has its own logic. Vera can run "server process" of their own, and thus the vera plugin is in lua, in domoticz it would have to be run either inside (un the main engine) or outside (an independant program polling the gateway holding specific mysensors logic, and pushing through JSON).

        z-wave - Vera -> Domoticz
        rfx - Domoticz <- MyDomoAtHome <- Imperihome
        mysensors -> mysensors-gw -> Domoticz

        1 Reply Last reply
        0
        • qqlapralineQ Offline
          qqlapralineQ Offline
          qqlapraline
          wrote on last edited by
          #6

          Fair enough: then we have to build up a gateway as part of Domoticz.
          Nonetheless, an intermediary solution would be to use the Domoticz lua script towards dummy sensors.

          QQ.

          jendrushJ 1 Reply Last reply
          0
          • qqlapralineQ qqlapraline

            Fair enough: then we have to build up a gateway as part of Domoticz.
            Nonetheless, an intermediary solution would be to use the Domoticz lua script towards dummy sensors.

            QQ.

            jendrushJ Offline
            jendrushJ Offline
            jendrush
            wrote on last edited by
            #7

            @qqlapraline Perfect would be if Domoticz creators have interest in integration mysensors on deeper level to their software, but i don't know if they are interested in any way on doing this.

            1 Reply Last reply
            0
            • qqlapralineQ Offline
              qqlapralineQ Offline
              qqlapraline
              wrote on last edited by
              #8

              I have exchanged with Gizmocuz who's in charge of Domoticz code. He is very eager to integrate mysensors into Domoticz.
              He needs some help so and asks for volunteers.

              But we haven't talked about integration policy. I would understand that he would not consider refactoring to integrate mysensors, a simple integration with a gateway engine (some kind of RFXCOM integration + gateway) is the key.

              1 Reply Last reply
              0
              • qqlapralineQ Offline
                qqlapralineQ Offline
                qqlapraline
                wrote on last edited by
                #9

                To move forward, I may have misunderstood things but can't we use one arduino as the gateway that reads/writes from serial ?
                Isn't it the principle of the raspberry pi gateway ?

                QQ.

                jendrushJ 1 Reply Last reply
                0
                • epierreE Offline
                  epierreE Offline
                  epierre
                  Hero Member
                  wrote on last edited by
                  #10

                  The Arduino is needed for it has all the libraries to interface the rf24 and the mysensors protocols... it hides it to the controller, but there are plenty of stuff hidden below... consider mysensors library as the protocol stack, the gateway as the layer 4 to 6, and application as layer 7 in OSI model ;-)

                  z-wave - Vera -> Domoticz
                  rfx - Domoticz <- MyDomoAtHome <- Imperihome
                  mysensors -> mysensors-gw -> Domoticz

                  1 Reply Last reply
                  0
                  • qqlapralineQ qqlapraline

                    To move forward, I may have misunderstood things but can't we use one arduino as the gateway that reads/writes from serial ?
                    Isn't it the principle of the raspberry pi gateway ?

                    QQ.

                    jendrushJ Offline
                    jendrushJ Offline
                    jendrush
                    wrote on last edited by
                    #11

                    @qqlapraline Yes, arduino can work as a gateway. But i think it should communicate with Domoticz not by json, but in better way.

                    1 Reply Last reply
                    0
                    • epierreE Offline
                      epierreE Offline
                      epierre
                      Hero Member
                      wrote on last edited by
                      #12

                      json is sometime the simplest way to have it working...

                      z-wave - Vera -> Domoticz
                      rfx - Domoticz <- MyDomoAtHome <- Imperihome
                      mysensors -> mysensors-gw -> Domoticz

                      qqlapralineQ 1 Reply Last reply
                      0
                      • epierreE epierre

                        json is sometime the simplest way to have it working...

                        qqlapralineQ Offline
                        qqlapralineQ Offline
                        qqlapraline
                        wrote on last edited by
                        #13

                        OK, so basically, nobody wants to do anything...Good way for the integration process !

                        jendrushJ 1 Reply Last reply
                        0
                        • qqlapralineQ qqlapraline

                          OK, so basically, nobody wants to do anything...Good way for the integration process !

                          jendrushJ Offline
                          jendrushJ Offline
                          jendrush
                          wrote on last edited by
                          #14

                          @qqlapraline I want but unfortunately i do not have abilities:( I can only suggest that if someone have contact with domoticz creators he can ask them if they can write better api...

                          1 Reply Last reply
                          0
                          • epierreE Offline
                            epierreE Offline
                            epierre
                            Hero Member
                            wrote on last edited by
                            #15

                            Hey QQ it is always easier to ask than to do...

                            So far there is no will on one side to do something, on the other same issue... (one developper on each side alone...)some people have ported the mysensors integration to openahab (which has a working z-wave integration and RFXtrx), but for your case it is a bit different...

                            First ask yourself if you are building a mysensors and for what use (needs some soldering, DIY, purchase, enery solving issue, boxing... that is not things bought uppon a shelf), and then you'll need to find people or make it yourself.

                            z-wave - Vera -> Domoticz
                            rfx - Domoticz <- MyDomoAtHome <- Imperihome
                            mysensors -> mysensors-gw -> Domoticz

                            qqlapralineQ 1 Reply Last reply
                            0
                            • hekH Offline
                              hekH Offline
                              hek
                              Admin
                              wrote on last edited by
                              #16

                              @qqlapraline said:

                              I have exchanged with Gizmocuz who's in charge of Domoticz code. He is very eager to integrate mysensors into Domoticz.

                              If Gizmocuz has specific questions about MySensors protocol or library I can probably answer them.

                              1 Reply Last reply
                              0
                              • epierreE epierre

                                Hey QQ it is always easier to ask than to do...

                                So far there is no will on one side to do something, on the other same issue... (one developper on each side alone...)some people have ported the mysensors integration to openahab (which has a working z-wave integration and RFXtrx), but for your case it is a bit different...

                                First ask yourself if you are building a mysensors and for what use (needs some soldering, DIY, purchase, enery solving issue, boxing... that is not things bought uppon a shelf), and then you'll need to find people or make it yourself.

                                qqlapralineQ Offline
                                qqlapralineQ Offline
                                qqlapraline
                                wrote on last edited by qqlapraline
                                #17

                                @epierre Yeah..right..:| thank you for the life lesson.

                                Actually, how surprising it might look, I don't have the need: I have Arduino, communicating together in a simple protocol and integrating very well with my domoticz installation (by the way, it supports lots of devices...). But, I have good will....And integration between mysensors and Domoticz seems quite logical to me. If this is a fight between number of code lines (which is probably not to the advantage of mysensors), then, fine by me: I'm out the game.

                                Regards.

                                QQ.

                                marceltrapmanM 1 Reply Last reply
                                0
                                • qqlapralineQ qqlapraline

                                  @epierre Yeah..right..:| thank you for the life lesson.

                                  Actually, how surprising it might look, I don't have the need: I have Arduino, communicating together in a simple protocol and integrating very well with my domoticz installation (by the way, it supports lots of devices...). But, I have good will....And integration between mysensors and Domoticz seems quite logical to me. If this is a fight between number of code lines (which is probably not to the advantage of mysensors), then, fine by me: I'm out the game.

                                  Regards.

                                  QQ.

                                  marceltrapmanM Offline
                                  marceltrapmanM Offline
                                  marceltrapman
                                  Mod
                                  wrote on last edited by
                                  #18

                                  @qqlapraline I don't really understand what you are trying to ask or say but I do know that the mySensors project is a project supported by only a handful of people.
                                  I for myself wanted integration with Indigo Domotica and, because I soon understood that I am the first (and at this point only) person asking for it I started developing a plugin for it.
                                  It is not my first priority (I have to make a living and my partner needs some attention as well) but I will get there.
                                  What you are asking (as far as I understand) is others to step up to the plate for something that you want or think makes sense in some future.
                                  That, as you probably understand by now, will only happen when more people start asking for it and/or someone takes the lead.
                                  When you are not that person I don't think it is correct to 'blame' anybody or get cynical because, just maybe, the time is not on your side.

                                  Fulltime Servoy Developer
                                  Parttime Moderator MySensors board

                                  I use Domoticz as controller for Z-Wave and MySensors (previously Indigo and OpenHAB).
                                  I have a FABtotum to print cases.

                                  1 Reply Last reply
                                  2
                                  • M Offline
                                    M Offline
                                    maglo18
                                    wrote on last edited by
                                    #19

                                    1 + for full integration with domoticz.

                                    1 Reply Last reply
                                    1
                                    • jendrushJ Offline
                                      jendrushJ Offline
                                      jendrush
                                      wrote on last edited by
                                      #20

                                      Nevertheless i am not a good programmer i will try tomorrow to make mysensors work with domoticz with at least temp sensors by the ethernet and json. Will see what i can acomplish with 90% desire, and 10% of knowledge:) Maybe it would be first step for others:)

                                      1 Reply Last reply
                                      0
                                      • epierreE Offline
                                        epierreE Offline
                                        epierre
                                        Hero Member
                                        wrote on last edited by
                                        #21

                                        Hi all,

                                        A hint of what is going on... with the vera gateway !

                                        http://forum.mysensors.org/topic/142/#1321

                                        z-wave - Vera -> Domoticz
                                        rfx - Domoticz <- MyDomoAtHome <- Imperihome
                                        mysensors -> mysensors-gw -> Domoticz

                                        1 Reply Last reply
                                        0
                                        • L Offline
                                          L Offline
                                          larky
                                          wrote on last edited by
                                          #22

                                          +1 on domoticz integration!

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          13

                                          Online

                                          11.7k

                                          Users

                                          11.2k

                                          Topics

                                          113.0k

                                          Posts


                                          Copyright 2019 TBD   |   Forum Guidelines   |   Privacy Policy   |   Terms of Service
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • MySensors
                                          • OpenHardware.io
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular