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. General Discussion
  3. What did you build today (Pictures) ?

What did you build today (Pictures) ?

Scheduled Pinned Locked Moved General Discussion
1.1k Posts 105 Posters 202.4k Views 98 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.
  • F Offline
    F Offline
    fredswed
    wrote on last edited by
    #282

    Great fun to see all these build pictures!

    My pic of the day is a trivial battery powered DHT22 sensor just to try things out with prototyping, programming and connecting to OpenHAB. This is my first project since highschool. (The gw and first sensor is on a breadboard.)

    It feels great to be soldering again after almost 30 years and I'm really looking forward to step into the MySensors world!

    0_1514584701721_DHTSensor01.jpg

    dbemowskD 1 Reply Last reply
    5
    • F fredswed

      Great fun to see all these build pictures!

      My pic of the day is a trivial battery powered DHT22 sensor just to try things out with prototyping, programming and connecting to OpenHAB. This is my first project since highschool. (The gw and first sensor is on a breadboard.)

      It feels great to be soldering again after almost 30 years and I'm really looking forward to step into the MySensors world!

      0_1514584701721_DHTSensor01.jpg

      dbemowskD Offline
      dbemowskD Offline
      dbemowsk
      wrote on last edited by
      #283

      @fredswed being a battery operated node, you may want to remove the LED from your pro-mini to save power. You may also want to look at the options for ruining without the pro-mini regulator also to save even more power.

      Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
      Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

      1 Reply Last reply
      2
      • gohanG Offline
        gohanG Offline
        gohan
        Mod
        wrote on last edited by
        #284

        and also get rid of the dht sensor to get a proper one :sweat_smile:

        1 Reply Last reply
        1
        • F Offline
          F Offline
          fredswed
          wrote on last edited by
          #285

          You are of course both right! It was only intended to get things going so I didn’t want to complicate things. My “production” sensors will be quite different. Maybe I’ll save this one in a frame on the wall :wink:

          1 Reply Last reply
          1
          • R Offline
            R Offline
            reinhold
            Hardware Contributor
            wrote on last edited by
            #286

            Today I finished the coding for my prototype of a laser distance sensor (intended to measure the water level for my automatic in-door flower watering pump). The sensor is connected via I²C and has sleep pin.

            0_1514595637161_IMAG2325.jpg

            The most work was implementing support for the VL52L0X laser distance sensor and for my 128x64 OLED display to NodeManager (PRs submitted as https://github.com/mysensors/NodeManager/pull/244 and https://github.com/mysensors/NodeManager/pull/245).

            The OLED is really useful when prototyping sensor nodes. Out of the box, my NodeManager OLED implemention will display the values of all attached sensors without any coding. Simply create the DisplaySSD1306 after all other sensors, and the OLED will pick up and display all sensors automatically...

            Once everything works, of course the OLED is not desired for the water level sensor running on batteries...

            Nca78N gohanG 2 Replies Last reply
            5
            • R reinhold

              Today I finished the coding for my prototype of a laser distance sensor (intended to measure the water level for my automatic in-door flower watering pump). The sensor is connected via I²C and has sleep pin.

              0_1514595637161_IMAG2325.jpg

              The most work was implementing support for the VL52L0X laser distance sensor and for my 128x64 OLED display to NodeManager (PRs submitted as https://github.com/mysensors/NodeManager/pull/244 and https://github.com/mysensors/NodeManager/pull/245).

              The OLED is really useful when prototyping sensor nodes. Out of the box, my NodeManager OLED implemention will display the values of all attached sensors without any coding. Simply create the DisplaySSD1306 after all other sensors, and the OLED will pick up and display all sensors automatically...

              Once everything works, of course the OLED is not desired for the water level sensor running on batteries...

              Nca78N Offline
              Nca78N Offline
              Nca78
              Hardware Contributor
              wrote on last edited by
              #287

              @reinhold that's an awesome idea ! Ordering new OLED displays right now ;)

              And this sensor is great, its precision is putting to shame the APDS and similar sensors.

              1 Reply Last reply
              0
              • R reinhold

                Today I finished the coding for my prototype of a laser distance sensor (intended to measure the water level for my automatic in-door flower watering pump). The sensor is connected via I²C and has sleep pin.

                0_1514595637161_IMAG2325.jpg

                The most work was implementing support for the VL52L0X laser distance sensor and for my 128x64 OLED display to NodeManager (PRs submitted as https://github.com/mysensors/NodeManager/pull/244 and https://github.com/mysensors/NodeManager/pull/245).

                The OLED is really useful when prototyping sensor nodes. Out of the box, my NodeManager OLED implemention will display the values of all attached sensors without any coding. Simply create the DisplaySSD1306 after all other sensors, and the OLED will pick up and display all sensors automatically...

                Once everything works, of course the OLED is not desired for the water level sensor running on batteries...

                gohanG Offline
                gohanG Offline
                gohan
                Mod
                wrote on last edited by
                #288

                @reinhold what library did you use for the oled? I used one that takes almost all memory available on my pro mini

                1 Reply Last reply
                0
                • R Offline
                  R Offline
                  reinhold
                  Hardware Contributor
                  wrote on last edited by
                  #289

                  @gohan I'm using the SSD1306Ascii library, which does not use a display buffer and does not support graphics, only text. The drawback is that to prevent screen flickering, you have to manually clean each line of text to the EOL. Otherwise letters that are not overwritten by new text will not be cleared. See my PR for NodeManager how it works. With my approach, there is absolutely no screen flicker, the display updates properly and the memory requirements are minimal (the library docs say its 53 bytes)

                  dbemowskD 1 Reply Last reply
                  2
                  • R reinhold

                    @gohan I'm using the SSD1306Ascii library, which does not use a display buffer and does not support graphics, only text. The drawback is that to prevent screen flickering, you have to manually clean each line of text to the EOL. Otherwise letters that are not overwritten by new text will not be cleared. See my PR for NodeManager how it works. With my approach, there is absolutely no screen flicker, the display updates properly and the memory requirements are minimal (the library docs say its 53 bytes)

                    dbemowskD Offline
                    dbemowskD Offline
                    dbemowsk
                    wrote on last edited by dbemowsk
                    #290

                    I now have revision 1.0 of my OLED keypad posted on OpenHardware.io. My first revision of the board allows for either the 6 pin SPI or 4 pin I2C versions of the SSD1306 OLED display. The 9 button configuration allows for several different combinations of buttons depending on the needs of the user.
                    https://www.openhardware.io/view/546

                    Vera Plus running UI7 with MySensors, Sonoffs and 1-Wire devices
                    Visit my website for more Bits, Bytes and Ramblings from me: http://dan.bemowski.info/

                    1 Reply Last reply
                    1
                    • sinczeS Offline
                      sinczeS Offline
                      sincze
                      MySensors Evangelist
                      wrote on last edited by
                      #291

                      I found out that the brinks solution I build some time ago could be upgraded with a nice additional feature. 'Filter detection'.

                      I created a cheat sheet as my device was equiped with RJ11 connector and 3 wires. I needed to convert it to RJ12 with filter detection.

                      0_1514922290404_WhatsApp Image 2018-01-02 at 20.40.46.jpeg

                      A nice black conversion box Output wires are the same colour as the original RJ 1 wire. With 2 extra wires 3,3v or 5v for the digital 'one' on the arduino.

                      0_1514922284342_WhatsApp Image 2018-01-02 at 20.38.14.jpeg

                      1 Reply Last reply
                      2
                      • andrewA andrew

                        0_1512830079874_small_20171119_155404.jpg 0_1512830092134_small_20171119_163354.jpg 0_1512830107562_small_20171119_163849.jpg 0_1512830119867_small_20171119_164745.jpg 0_1512830130032_small_20171119_165717.jpg 0_1512830150237_small_20171203_092353.jpg 0_1512830159490_small_20171203_163658.jpg 0_1512830169403_small_20171207_194213.jpg

                        andrewA Offline
                        andrewA Offline
                        andrew
                        wrote on last edited by
                        #292

                        @andrew said in What did you build today (Pictures) ?:

                        0_1512830079874_small_20171119_155404.jpg 0_1512830092134_small_20171119_163354.jpg 0_1512830107562_small_20171119_163849.jpg 0_1512830119867_small_20171119_164745.jpg 0_1512830130032_small_20171119_165717.jpg 0_1512830150237_small_20171203_092353.jpg 0_1512830159490_small_20171203_163658.jpg 0_1512830169403_small_20171207_194213.jpg

                        so, it is ready. I mean ready to SW development :) both the schematic and pcb design is now confirmed and fortunately theory meets the practice :)

                        0_1515090568483_small_small_20180103_235320.jpg

                        0_1515090578447_small_small_20180104_001658.jpg

                        0_1515090588886_small_small_20180104_003546.jpg

                        0_1515090603769_small_small_20180104_003556.jpg

                        0_1515090626947_small_small_20180104_004540.jpg

                        0_1515090649476_small_small_20180104_004605.jpg

                        0_1515090667193_small_small_20180104_004655.jpg

                        0_1515090681698_small_small_20180104_005413.jpg

                        0_1515090695413_small_small_20180104_005424.jpg

                        0_1515090706426_small_small_20180104_010443.jpg

                        0_1515090717200_small_small_20180104_010955.jpg

                        it is assembled, programmed, tested, everything works as expected.
                        I did not mount it to the wall so far (I'll need a controller and real actuators first), but there was no issue with the communication between two nrf modules (both with PCB antenna) from cca 6 meter distance + 2 walls (10 cm brick) in between.

                        the touch panel's firmware will be enhanced as well as the controller's firmware, at the moment the touch sensing is reliable and a PoC code run on both of them for testing/debugging purposes. for the controller board I'm collecting additional information for the development on the following link:
                        https://forum.mysensors.org/topic/8831/which-sensor-and-msg-type-for-switch-dimmer-node-sender-only

                        YveauxY jeremushkaJ 2 Replies Last reply
                        8
                        • andrewA andrew

                          @andrew said in What did you build today (Pictures) ?:

                          0_1512830079874_small_20171119_155404.jpg 0_1512830092134_small_20171119_163354.jpg 0_1512830107562_small_20171119_163849.jpg 0_1512830119867_small_20171119_164745.jpg 0_1512830130032_small_20171119_165717.jpg 0_1512830150237_small_20171203_092353.jpg 0_1512830159490_small_20171203_163658.jpg 0_1512830169403_small_20171207_194213.jpg

                          so, it is ready. I mean ready to SW development :) both the schematic and pcb design is now confirmed and fortunately theory meets the practice :)

                          0_1515090568483_small_small_20180103_235320.jpg

                          0_1515090578447_small_small_20180104_001658.jpg

                          0_1515090588886_small_small_20180104_003546.jpg

                          0_1515090603769_small_small_20180104_003556.jpg

                          0_1515090626947_small_small_20180104_004540.jpg

                          0_1515090649476_small_small_20180104_004605.jpg

                          0_1515090667193_small_small_20180104_004655.jpg

                          0_1515090681698_small_small_20180104_005413.jpg

                          0_1515090695413_small_small_20180104_005424.jpg

                          0_1515090706426_small_small_20180104_010443.jpg

                          0_1515090717200_small_small_20180104_010955.jpg

                          it is assembled, programmed, tested, everything works as expected.
                          I did not mount it to the wall so far (I'll need a controller and real actuators first), but there was no issue with the communication between two nrf modules (both with PCB antenna) from cca 6 meter distance + 2 walls (10 cm brick) in between.

                          the touch panel's firmware will be enhanced as well as the controller's firmware, at the moment the touch sensing is reliable and a PoC code run on both of them for testing/debugging purposes. for the controller board I'm collecting additional information for the development on the following link:
                          https://forum.mysensors.org/topic/8831/which-sensor-and-msg-type-for-switch-dimmer-node-sender-only

                          YveauxY Offline
                          YveauxY Offline
                          Yveaux
                          Mod
                          wrote on last edited by
                          #293

                          @andrew Nice work man!
                          Where did you source the gray enclosure from?

                          http://yveaux.blogspot.nl

                          andrewA 1 Reply Last reply
                          0
                          • YveauxY Yveaux

                            @andrew Nice work man!
                            Where did you source the gray enclosure from?

                            andrewA Offline
                            andrewA Offline
                            andrew
                            wrote on last edited by
                            #294

                            @yveaux said in What did you build today (Pictures) ?:

                            @andrew Nice work man!
                            Where did you source the gray enclosure from?

                            thanks! the cover is also part of the original livolo (well, in fact a chinese clone of livolo) touch switch.

                            1 Reply Last reply
                            0
                            • andrewA Offline
                              andrewA Offline
                              andrew
                              wrote on last edited by
                              #295

                              https://www.youtube.com/watch?v=l2aiqRqlwKo

                              sinczeS 1 Reply Last reply
                              4
                              • andrewA andrew

                                https://www.youtube.com/watch?v=l2aiqRqlwKo

                                sinczeS Offline
                                sinczeS Offline
                                sincze
                                MySensors Evangelist
                                wrote on last edited by
                                #296

                                @andrew said in What did you build today (Pictures) ?:

                                András Kabai

                                Nice video András ;-)

                                andrewA 1 Reply Last reply
                                0
                                • sinczeS sincze

                                  @andrew said in What did you build today (Pictures) ?:

                                  András Kabai

                                  Nice video András ;-)

                                  andrewA Offline
                                  andrewA Offline
                                  andrew
                                  wrote on last edited by
                                  #297

                                  @sincze thanks, Sandor ;)

                                  1 Reply Last reply
                                  0
                                  • NeverDieN Offline
                                    NeverDieN Offline
                                    NeverDie
                                    Hero Member
                                    wrote on last edited by
                                    #298

                                    Added a buzzer to my nRF51822 coincell device to make a locator beacon. Attach the device to an object you tend to lose and it will make sounds when you activate it, allowing you to find it.
                                    0_1515273198336_buzzer_beacon.jpg
                                    The buzzer is driven by a load switch, so that none of the nRF51822 pins are overloaded:
                                    0_1515273260885_buzzer_board.jpg

                                    andrewA 1 Reply Last reply
                                    3
                                    • NeverDieN NeverDie

                                      Added a buzzer to my nRF51822 coincell device to make a locator beacon. Attach the device to an object you tend to lose and it will make sounds when you activate it, allowing you to find it.
                                      0_1515273198336_buzzer_beacon.jpg
                                      The buzzer is driven by a load switch, so that none of the nRF51822 pins are overloaded:
                                      0_1515273260885_buzzer_board.jpg

                                      andrewA Offline
                                      andrewA Offline
                                      andrew
                                      wrote on last edited by
                                      #299

                                      @neverdie I hope that you made the prototyping with the cnc ;)

                                      1 Reply Last reply
                                      1
                                      • sinczeS Offline
                                        sinczeS Offline
                                        sincze
                                        MySensors Evangelist
                                        wrote on last edited by
                                        #300

                                        Finally, the last day of my holiday I managed to upload the Mysensors Sketch into the NodeMCU to control my 900 LEDS. It will also read the lux intensity in the livingroom. So if it is dark the lights will switch on.

                                        0_1515346564306_NodeMCU Driving LED.jpg

                                        All is based on @Yveaux Mysensors ESP Gateway port. On a rainy saterday last year @Yveaux and I found out we did not have to modify anything on the voltag level for driving the LEDS. ;)

                                        The sketch includes all the Doll_House animations (around 55) that can be skipped through using an old 433mhz remote (or via interface directly ofcourse) Next stop... Installing 15 meters of LED in the livingroom. pffff ;-)

                                        And putting everything inside this little box @Yveaux printed for me.
                                        0_1515346955766_Box.jpeg

                                        1 Reply Last reply
                                        4
                                        • scalzS Offline
                                          scalzS Offline
                                          scalz
                                          Hardware Contributor
                                          wrote on last edited by scalz
                                          #301

                                          Hi,

                                          today I've almost finished a speaker build :) (it'll be a gift for family)

                                          First, I would like to thx Paul Carmody who created the original design of these speakers : Overnight Sensation :clap: :+1:
                                          https://sites.google.com/site/undefinition/diy-overnightsensations

                                          I have just changed size and format (of course I kept the internal air volume which is very important)

                                          1. I designed&printed a simple circle jig for my router.
                                            0_1515348466242_Pièce1.PNG
                                            0_1515346505441_circle jig.jpg

                                          2. So speaker drivers can be flush on front plate
                                            0_1515346542637_frontplate.jpg

                                          3. Assembled the box
                                            0_1515346612578_speaker.jpg

                                          4. Crossover, port tube, foam
                                            0_1515346694824_back.jpg
                                            with a special place to fit some electronics like

                                          • rpi (for Volumio/LMS client, or a voice assistant)
                                          • cheap dac & 2x50w amp from aliexpress
                                          1. Now vinyling. I need to change these ugly black screws too.
                                            0_1515346789068_vinyling.jpg

                                          Of course, I'm too excited (and not very patient ), so I've tested how they sound... Loud! Crystal sound with very nice boomboom :muscle:

                                          Not finished, but in good way :)

                                          zboblamontZ F 2 Replies Last reply
                                          8
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          17

                                          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