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.5k 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.
  • sundberg84S sundberg84

    A temp-node on 2xAA. Also a sneak-peak on EasyPCB rev 10...

    https://youtu.be/TxzvhG4uo9I

    M Offline
    M Offline
    mickecarlsson
    wrote on last edited by
    #543

    @sundberg84 how is the rev10 progress going? I am about to order a batch of EasyPCB but want the new bells and whistles :-)

    sundberg84S 1 Reply Last reply
    0
    • GertSandersG GertSanders

      @neverdie nope, but it is inspired by oriental frames, I just made that based on what I saw on one of my cabinets (which I bought while living in Singapore).

      NeverDieN Offline
      NeverDieN Offline
      NeverDie
      Hero Member
      wrote on last edited by
      #544

      @gertsanders Cool. You might like this pattern also then:
      0_1526850036184_pattern.png

      dbemowskD GertSandersG 2 Replies Last reply
      0
      • NeverDieN NeverDie

        @gertsanders Cool. You might like this pattern also then:
        0_1526850036184_pattern.png

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

        @neverdie That's cool. Kind of like an overlapping honeycomb design.

        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/

        NeverDieN 1 Reply Last reply
        0
        • M mickecarlsson

          @sundberg84 how is the rev10 progress going? I am about to order a batch of EasyPCB but want the new bells and whistles :-)

          sundberg84S Offline
          sundberg84S Offline
          sundberg84
          Hardware Contributor
          wrote on last edited by sundberg84
          #546

          @mickecarlsson except I have not yet tested the new things on the back (signing and extra flash) the boards are working. I will try to test the last things before May is over and the publish.

          If you want to order I can offcourse email you the Gerber's but on your own risk.

          My first experience with the board is that it's performing better than Rev 9 with the new position if the hardware. Also the ground plane helps.

          Controller: Proxmox VM - Home Assistant
          MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
          MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
          RFLink GW - Arduino Mega + RFLink Shield, 433mhz

          M 1 Reply Last reply
          1
          • NeverDieN NeverDie

            @gertsanders Cool. You might like this pattern also then:
            0_1526850036184_pattern.png

            GertSandersG Offline
            GertSandersG Offline
            GertSanders
            Hardware Contributor
            wrote on last edited by
            #547

            @neverdie that is a nice pattern. I found that these things need time to draw. If anyone has a DXF file, I would love to try it.

            1 Reply Last reply
            0
            • sundberg84S sundberg84

              @mickecarlsson except I have not yet tested the new things on the back (signing and extra flash) the boards are working. I will try to test the last things before May is over and the publish.

              If you want to order I can offcourse email you the Gerber's but on your own risk.

              My first experience with the board is that it's performing better than Rev 9 with the new position if the hardware. Also the ground plane helps.

              M Offline
              M Offline
              mickecarlsson
              wrote on last edited by
              #548

              @sundberg84 thanks for the offer, I can wait for the final, no worries. Do you have a list of the new components added on the back?

              sundberg84S 1 Reply Last reply
              0
              • dbemowskD dbemowsk

                @neverdie That's cool. Kind of like an overlapping honeycomb design.

                NeverDieN Offline
                NeverDieN Offline
                NeverDie
                Hero Member
                wrote on last edited by NeverDie
                #549

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

                @neverdie That's cool. Kind of like an overlapping honeycomb design.

                Bingo! Looks like that's exactly what it is. A small honeycomb superimposed on a bigger one.

                dbemowskD 1 Reply Last reply
                0
                • NeverDieN NeverDie

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

                  @neverdie That's cool. Kind of like an overlapping honeycomb design.

                  Bingo! Looks like that's exactly what it is. A small honeycomb superimposed on a bigger one.

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

                  @neverdie I created that basic pattern in OpenSCAD.
                  0_1526945066593_bfcdde18-4703-4105-9352-18f2512bee6c-image.png

                  Here is the scad

                   $fn = 6;
                   fudge = 0.01;
                   
                   pi=3.1415926;
                   large_diameter = 40;
                   circumradius = large_diameter/2;
                   inradius = circumradius/(2*tan(180/$fn))-1;
                   
                   height = 2;
                   line_width = 1;
                  
                   rotate([0, 0, 0]) hollow_cylinder(large_diameter-line_width, height, line_width);
                   
                   for(i=[1:$fn]) {
                       rotate([0, 0, (360/$fn*i)+30]) translate([inradius, 0, 0]) rotate([0, 0, 30]) hollow_cylinder(circumradius, height, line_width);
                   }
                   
                   
                   module hollow_cylinder(diameter=10, thickness=2, line_thickness=2) {
                       difference() {
                           cylinder(thickness, d=diameter);
                           translate([0, 0, -fudge/2]) cylinder(thickness+fudge, d=diameter-(line_thickness*2));
                       }
                   }
                  

                  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
                  • dbemowskD Offline
                    dbemowskD Offline
                    dbemowsk
                    wrote on last edited by
                    #551

                    Expanding on that, I mapped it out further to give people an idea of how it's calculated.
                    0_1526945766157_87b8762d-0fac-43e5-987b-7a99a6a481eb-image.png

                    And the scad based on my previous post.

                     $fn = 6;
                     fudge = 0.01;
                     
                     pi=3.1415926;
                     large_diameter = 40;
                     circumradius = large_diameter/2;
                     inradius = circumradius/(2*tan(180/$fn))-1;
                     
                     height = 2;
                     line_width = 1;
                     
                     for(i=[1:$fn]) {
                        rotate([0, 0, (360/$fn*i)+30]) translate([inradius*2, 0, 0]) rotate([0, 0, 30]) honeycomb();
                     }
                    
                     module honeycomb() {
                         rotate([0, 0, 0]) hollow_cylinder(large_diameter-line_width, height, line_width);
                         
                         for(i=[1:$fn]) {
                             rotate([0, 0, (360/$fn*i)+30]) translate([inradius, 0, 0]) rotate([0, 0, 30]) hollow_cylinder(circumradius, height, line_width);
                         }
                     }
                     
                     
                     module hollow_cylinder(diameter=10, thickness=2, line_thickness=2) {
                         difference() {
                             cylinder(thickness, d=diameter);
                             translate([0, 0, -fudge/2]) cylinder(thickness+fudge, d=diameter-(line_thickness*2));
                         }
                     }
                    

                    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
                    • M mickecarlsson

                      @sundberg84 thanks for the offer, I can wait for the final, no worries. Do you have a list of the new components added on the back?

                      sundberg84S Offline
                      sundberg84S Offline
                      sundberg84
                      Hardware Contributor
                      wrote on last edited by sundberg84
                      #552

                      @mickecarlsson - sure.
                      Signing: atsha204a (sot-32-3), R4: 1k-100k resistor (0805), C5 0,1uF capacitor (0805)
                      Flash: R7: 56k-100k resistor (0805), C7; 0,1uF capacitor (0805), U5: AT25DF512C or equivalent SPI Serial Flash Memory (8-lead SOIC). I bought this from Germany (but not tested)

                      Controller: Proxmox VM - Home Assistant
                      MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
                      MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
                      RFLink GW - Arduino Mega + RFLink Shield, 433mhz

                      1 Reply Last reply
                      0
                      • sundberg84S Offline
                        sundberg84S Offline
                        sundberg84
                        Hardware Contributor
                        wrote on last edited by sundberg84
                        #553

                        Yesterday I tested the new EasyPCB with RFM radio and hardware signing. Worked out as expected and I'm going to release all files soon.

                        I haven't tested the flash part yet but I'm hoping this is working as well.

                        This picture will be a part of a new video with me building my new RFM69 serial gateway using signing.

                        Anyone they can guess which issue I had when I took the photo?

                        0_1527916350367_IMG_20180601_140009.jpg
                        Rev9 vs Rev10 (inkl signing) rfm gw

                        Controller: Proxmox VM - Home Assistant
                        MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
                        MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
                        RFLink GW - Arduino Mega + RFLink Shield, 433mhz

                        M 1 Reply Last reply
                        0
                        • sundberg84S sundberg84

                          Yesterday I tested the new EasyPCB with RFM radio and hardware signing. Worked out as expected and I'm going to release all files soon.

                          I haven't tested the flash part yet but I'm hoping this is working as well.

                          This picture will be a part of a new video with me building my new RFM69 serial gateway using signing.

                          Anyone they can guess which issue I had when I took the photo?

                          0_1527916350367_IMG_20180601_140009.jpg
                          Rev9 vs Rev10 (inkl signing) rfm gw

                          M Offline
                          M Offline
                          mickecarlsson
                          wrote on last edited by mickecarlsson
                          #554

                          @sundberg84 the RFM69 is soldered 180 degrees wrong on the new board :white_frowning_face:

                          sundberg84S 1 Reply Last reply
                          0
                          • M mickecarlsson

                            @sundberg84 the RFM69 is soldered 180 degrees wrong on the new board :white_frowning_face:

                            sundberg84S Offline
                            sundberg84S Offline
                            sundberg84
                            Hardware Contributor
                            wrote on last edited by sundberg84
                            #555

                            @mickecarlsson interesting thought but no because the radio on rev9 isn't soldered in the image (but wrong rotated as you noticed). The hardware on that image is working. I added a HW radio without noticing so with the old code I just got no reply/Nack. I had to add the HW define.

                            Controller: Proxmox VM - Home Assistant
                            MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
                            MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
                            RFLink GW - Arduino Mega + RFLink Shield, 433mhz

                            1 Reply Last reply
                            0
                            • vladimirV Offline
                              vladimirV Offline
                              vladimir
                              wrote on last edited by
                              #556

                              Today I finally finished my second RGB LED lighting in the room. Next is the LED illumination of the perimeter of the bed. Under the bed, I want to place a motion sensor so that it reacts when I get out of bed at night.
                              alt text

                              GertSandersG 1 Reply Last reply
                              5
                              • sundberg84S Offline
                                sundberg84S Offline
                                sundberg84
                                Hardware Contributor
                                wrote on last edited by sundberg84
                                #557

                                Redesigning my nodes in the RFM69 network to be signed using EasyPCB 10. Today it was my beer cooler node (because it's very important the beer temperature is secured). In the same time I'm implementing @gohan idea with two temp points (top and bottom).

                                0_1528134204572_IMG_20180604_194024.jpg

                                Controller: Proxmox VM - Home Assistant
                                MySensors GW: Arduino Uno - W5100 Ethernet, Gw Shield Nrf24l01+ 2,4Ghz
                                MySensors GW: Arduino Uno - Gw Shield RFM69, 433mhz
                                RFLink GW - Arduino Mega + RFLink Shield, 433mhz

                                1 Reply Last reply
                                3
                                • vladimirV vladimir

                                  Today I finally finished my second RGB LED lighting in the room. Next is the LED illumination of the perimeter of the bed. Under the bed, I want to place a motion sensor so that it reacts when I get out of bed at night.
                                  alt text

                                  GertSandersG Offline
                                  GertSandersG Offline
                                  GertSanders
                                  Hardware Contributor
                                  wrote on last edited by
                                  #558

                                  @vladimir

                                  you could use this under the bed:

                                  https://www.aliexpress.com/item/Free-Shipping-5-Pieces-RCWL-0516-Microwave-Radar-Sensor-Module-Human-Body-Induction-Switch-Module/32773310756.html?spm=a2g0s.9042311.0.0.27424c4dQaNm0K

                                  It works like an infrared sensor (same three pins), but it does not need a line of sight. It just reacts to movement as this results in a disturbance in the emitted radio signal. Works very well on my clock :-)

                                  The "high" value when movement is detected is not a full 5V, so I test the Out pin as an analog pin. Anything above 2.5V is an activation due to movement.

                                  vladimirV 1 Reply Last reply
                                  3
                                  • GertSandersG GertSanders

                                    @vladimir

                                    you could use this under the bed:

                                    https://www.aliexpress.com/item/Free-Shipping-5-Pieces-RCWL-0516-Microwave-Radar-Sensor-Module-Human-Body-Induction-Switch-Module/32773310756.html?spm=a2g0s.9042311.0.0.27424c4dQaNm0K

                                    It works like an infrared sensor (same three pins), but it does not need a line of sight. It just reacts to movement as this results in a disturbance in the emitted radio signal. Works very well on my clock :-)

                                    The "high" value when movement is detected is not a full 5V, so I test the Out pin as an analog pin. Anything above 2.5V is an activation due to movement.

                                    vladimirV Offline
                                    vladimirV Offline
                                    vladimir
                                    wrote on last edited by
                                    #559

                                    @gertsanders many thanks!:raised_hands: This is very interesting, I did not previously hear about such a sensor.
                                    I understand correctly that it can be placed in a wooden case and it can work through it? Since the tree does not reflect its waves.
                                    If this is so, will not it respond to the movement of the bed frame or my movements when I'm on the bed?...:thinking_face:

                                    1 Reply Last reply
                                    0
                                    • gohanG Offline
                                      gohanG Offline
                                      gohan
                                      Mod
                                      wrote on last edited by
                                      #560

                                      I tried some of those radar sensors and are very sensitive, they could detect even if you move in the bed. In addition I'd rather not sleep next to a 5 Ghz radar emitter 😅

                                      vladimirV 1 Reply Last reply
                                      1
                                      • gohanG gohan

                                        I tried some of those radar sensors and are very sensitive, they could detect even if you move in the bed. In addition I'd rather not sleep next to a 5 Ghz radar emitter 😅

                                        vladimirV Offline
                                        vladimirV Offline
                                        vladimir
                                        wrote on last edited by
                                        #561

                                        @gohan Is there a chance to wake up a little toasted?:sweat_smile:

                                        1 Reply Last reply
                                        0
                                        • gohanG Offline
                                          gohanG Offline
                                          gohan
                                          Mod
                                          wrote on last edited by
                                          #562

                                          fortunately the power is low, but still in the wifi power range and it is transmitting 24/7

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


                                          16

                                          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