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.
  • gohanG gohan

    @monte if you can share, pls do so :)

    monteM Offline
    monteM Offline
    monte
    wrote on last edited by monte
    #666

    Ask questions if something is left unclear.

    #define DHT_PIN 4
    #define CE_DISPLAY 5
    #define RST_DISPLAY A2
    #define DC_DISPLAY A3
    #define DIN_DISPLAY 7
    #define CLK_DISPLAY 8
    #define SN "Clock + Temperature"
    #define SV "1.0"
    #define DHT_TYPE DHT22
    
    #define MY_RADIO_NRF24
    #define MY_TRANSPORT_WAIT_READY_MS 10000
    
    #include <MySensors.h>
    #include <U8g2lib.h>
    #include <DHT.h>
    #include <time.h>
    
    volatile unsigned long rawTime;
    unsigned long timer1 = 0;
    unsigned long getTimeDelay = 600000;
    unsigned long timer2 = 0;
    int getDHTDelay = 3000;
    unsigned long timer3 = 0;
    unsigned int sendDelay = 60000;
    
    float h, t;
    char outdoorTemp[50];
    float lastT;
    
    U8G2_PCD8544_84X48_1_4W_SW_SPI u8g2(U8G2_R0, /* clock=*/ CLK_DISPLAY, /* data=*/ DIN_DISPLAY, /* cs=*/ CE_DISPLAY, /* dc=*/ DC_DISPLAY, /* reset=*/ RST_DISPLAY);  // Nokia 5110 Display
    DHT dht(DHT_PIN, DHT_TYPE);
    MyMessage tempMsg(0, V_TEMP);
    volatile struct tm * localTime;
    
    void before()
    {
      u8g2.begin();
      Serial.begin(115200);
      u8g2.firstPage();
      do {
        initScreen();
      } while ( u8g2.nextPage() );
      dht.begin();
      delay(2000);
    }
    
    void setup() {
      setupTime();
      timer1 = millis();
      t = dht.readTemperature();
      h = dht.readHumidity();
      timer2 = millis();
      send(tempMsg.set(t, 0));
      lastT = t;
      timer3 = millis();
    }
    
    void presentation()
    {
      present(0, S_TEMP);
      present(1, S_INFO); //Info sensor to request outdoor tempereture
      sendSketchInfo(SN, SV);
      request(1, V_TEXT);
    }
    
    void setupTime()	//setting up timer and interrupt for seconds counter
    {
      cli();
      //set timer1 interrupt at 1Hz
      TCCR1A = 0;// set entire TCCR1A register to 0
      TCCR1B = 0;// same for TCCR1B
      TCNT1  = 0;//initialize counter value to 0
      // set compare match register for 1hz increments
      OCR1A = 15624;// = (16*10^6) / (1*1024) - 1 (must be <65536)
      // turn on CTC mode
      TCCR1B |= (1 << WGM12);
      // Set CS10 and CS12 bits for 1024 prescaler
      TCCR1B |= (1 << CS12) | (1 << CS10);
      // enable timer compare interrupt
      TIMSK1 |= (1 << OCIE1A);
      sei();
      requestTime();
    }
    
    ISR(TIMER1_COMPA_vect)
    {
      rawTime++;	//increment seconds counter
    }
    
    void float2string(float n, char* output)
    {
      char aChar[5];
      char bChar[4];
      if (n > 0.0) {
        strcpy(aChar, "+");
      } else if (n < 0.0) {
        strcpy(aChar, "-");
      }
      dtostrf(n, 4, 1, bChar);
      sprintf(output, "%s%s", aChar, bChar);
    }
    
    void initScreen()	//function to show message on screen during node start
    {
      u8g2.setFont(u8g2_font_profont12_tr);
      u8g2.drawStr(42 - (u8g2.getStrWidth("Connecting to") / 2), 13, "Connecting to");
      u8g2.drawStr(42 - (u8g2.getStrWidth("a MySensors") / 2), 26, "a MySensors");
      u8g2.drawStr(42 - (u8g2.getStrWidth("network.") / 2), 39, "network");
    }
    
    void mainScreen()
    {
      u8g2.setDrawColor(1);
      u8g2.setFontMode(1);
      u8g2.drawBox(0, 0, 84, 8);
      u8g2.setDrawColor(0);
      u8g2.setFont(u8g2_font_profont10_tf);
      localTime = localtime(&rawTime);	//using standart AVR time.h library to convert seconds counter into local time
      char date[30];
      strftime(date, 30, "%d.%m.%y %R", localTime);	//constructing a string with date and time
      u8g2.drawStr(42 - (u8g2.getStrWidth(date) / 2), 7, date);
      u8g2.setDrawColor(1);
      u8g2.setFont(u8g2_font_maniac_tr);
      char val[5];
      float2string(t, val);	//converting float value from dht11 to a string
      u8g2.drawStr(42 - (u8g2.getStrWidth(val) / 2), 36, val);
      u8g2.setFont(u8g2_font_profont10_tf);
      u8g2.drawStr(5, 47, outdoorTemp);
      itoa((int)h, val, 10); //I don't need precision for humidity procentage, otherwise you can use dtostrf()
      u8g2.drawStr(70 - u8g2.getStrWidth(val), 47, val);
      u8g2.setFont(u8g2_font_open_iconic_thing_1x_t);
      u8g2.drawStr(71, 47, "\x48");
    }
    
    boolean isTime(unsigned long *timeMark, unsigned long timeInterval)	//time counter function for non-blocking delays
    {
      if (millis() - *timeMark >= timeInterval) {
        *timeMark = millis();
        return true;
      }
      return false;
    }
    
    void loop() 
    {
      if (isTime(&timer1, getTimeDelay)) {	//request time from controller once in 10 minutes
        requestTime();
      }
      if (isTime(&timer2, getDHTDelay)) {	//polling DHT sensor and printing values to serial
        t = dht.readTemperature();
        h = dht.readHumidity();
        Serial.print("Temperature: ");
        Serial.print(t);
        Serial.println("°");
        Serial.print("Humidity: ");
        Serial.print(h);
        Serial.println("%");
      }
      if (isTime(&timer3, sendDelay)) {	//sending temperature to controller once in 30 seconds
        if (t != lastT) {
          send(tempMsg.set(t, 0));
          request(1, V_TEXT);
          lastT = t;
        }
      }
      u8g2.firstPage();	//this section is for screen handling
      do {
        mainScreen();
      } while ( u8g2.nextPage() );
    
    }
    
    void receive(const MyMessage &message)	//receiving an outdoor reading from the controller and constructing a string to display
    {
      if (message.type == V_TEXT) {
        sprintf(outdoorTemp, "%sC%s", message.getString(), "\xb0");
      }
    }
    
    void receiveTime(uint32_t ts)
    {
      rawTime = ts - UNIX_OFFSET;	//substructing an offset from received timestamp, since time.h doesn't use Unix count
      localTime = localtime(&rawTime);	//updating seconds timer with accurate value
      timer1 = millis();
    }
    
    
    1 Reply Last reply
    0
    • nagelcN Offline
      nagelcN Offline
      nagelc
      wrote on last edited by nagelc
      #667

      I repurposed a breakout board to make an informal range test of an RA-01 (433 Mhz).
      The test was not very sophisticated -- I had MySensors node request time from the controller and blink a LED when it received the time. Then I just walked around my neighborhood.
      Lost the signal at ~ 156 Meters. This was down hill and through several houses.
      Picked up again at ~ 248 Meters. This was at about the same elevation as my house but still through several houses.
      It also works well in the far corner of my basement (2 floors and 1 or 2 walls). The NRF24 has trouble there, but RFM69 does not.
      The range may not seem very impressive for a LoRa radio (I hoped for kilometers : ) , but the antennas are not optimized and this is a fairly dense suburban area -- difficult to get line of site. They certainly work well enough for any application I have in mind.

      NeverDieN 1 Reply Last reply
      0
      • nagelcN nagelc

        I repurposed a breakout board to make an informal range test of an RA-01 (433 Mhz).
        The test was not very sophisticated -- I had MySensors node request time from the controller and blink a LED when it received the time. Then I just walked around my neighborhood.
        Lost the signal at ~ 156 Meters. This was down hill and through several houses.
        Picked up again at ~ 248 Meters. This was at about the same elevation as my house but still through several houses.
        It also works well in the far corner of my basement (2 floors and 1 or 2 walls). The NRF24 has trouble there, but RFM69 does not.
        The range may not seem very impressive for a LoRa radio (I hoped for kilometers : ) , but the antennas are not optimized and this is a fairly dense suburban area -- difficult to get line of site. They certainly work well enough for any application I have in mind.

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

        @nagelc If you add some coding gain, you should be able to get longer range. However, tx time will increase.

        1 Reply Last reply
        1
        • nagelcN Offline
          nagelcN Offline
          nagelc
          wrote on last edited by
          #669

          Thks. I'll try that.

          zboblamontZ 1 Reply Last reply
          0
          • nagelcN nagelc

            Thks. I'll try that.

            zboblamontZ Offline
            zboblamontZ Offline
            zboblamont
            wrote on last edited by
            #670

            Not so much a MySensors build as an example of how even the most basic information can inform changes for the better, in this case space heating.

            The system here is fairly basic, an array of DS18B20s, some ultrasonic tank probes and a gas reed sensor, temperature is updated every 5 minutes, the gas updates every 0.05m3...
            With winters here down to -20, the first priority last year was insulation, and even though a modern house, the gas bills essentially halved over the year, effectively funding not only the insulation, but replacement axial radiator valves and thermostat heads (Heimeier) to replace the typical arrangement of unknown origin, with spare... But now the MySensors impact..
            This autumn's attention turned to the central heating unit, a modern combi unit of good manufacture, installed by a 'certified' heating engineer, but aside what little I knew about condensation boilers and the steep learning curve that followed, I was bemused by the return from the radiator loop almost burning my finger within 10 minutes of the system being fired up. This did not make sense for what I understood of a condensing boilers, which compelled a look inside for the first time, the manual and some googling.

            The boiler is a 25kW combi with minimum output 7.6kW, the radiators account for ca 13kW at Delta 60 set for 15c drop (previously set ca 20c drop), settings since day one were 65c and the pump was set at max output of 3, last year's -20 resulted in 13.5m3/day gas consumed, not crazy by historical records, but hmmm.
            So now comes tinkering with data from MySensors via Domoticz to inform...
            Currently the boiler is set at 55c, the pump is on Low (40 v 84w), but the results are surprising - Slower rising temperature when ON, 42 minutes v 25, but gas use dropped from 0.75 to 0.6m3, but here's the kicker from that longer heating time, not only less energy used per cycle, but longer and thereby fewer cycles per day. Current evaluations are between 15 and 20% savings, so thank you to all the MySensors community and contributors.. ;)

            gohanG 1 Reply Last reply
            4
            • jeremushkaJ Offline
              jeremushkaJ Offline
              jeremushka
              wrote on last edited by
              #671

              I have build a very quick board with Dual relay channel, arduino nano, NRF24 transceiver, Power supply from 220V.
              There is also "Fil Pilote" connection to pilot the electrical heater. It is a french protocol.
              It is a "dirty" board for sure but usefull when i want to test some code implemented in the arduino Nano.

              0_1543502852591_IMG_20181129_153704.jpg

              I would like to make a cleaner board, a real PCB but if i launch the manufacturing i wil get minimum of 10 boards that i do not need.

              If anybody, could explain to me how i can print my own PCB for quick tests about some projects, some features implementations, it would be nice :)

              NeverDieN 1 Reply Last reply
              0
              • jeremushkaJ jeremushka

                I have build a very quick board with Dual relay channel, arduino nano, NRF24 transceiver, Power supply from 220V.
                There is also "Fil Pilote" connection to pilot the electrical heater. It is a french protocol.
                It is a "dirty" board for sure but usefull when i want to test some code implemented in the arduino Nano.

                0_1543502852591_IMG_20181129_153704.jpg

                I would like to make a cleaner board, a real PCB but if i launch the manufacturing i wil get minimum of 10 boards that i do not need.

                If anybody, could explain to me how i can print my own PCB for quick tests about some projects, some features implementations, it would be nice :)

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

                @jeremushka Well, since you ask, you can use a CNC to etch and drill your own PCB: https://forum.mysensors.org/topic/8735/cnc-pcb-milling

                A board such as yours would be fairly easy to do that way.

                jeremushkaJ 1 Reply Last reply
                0
                • NeverDieN NeverDie

                  @jeremushka Well, since you ask, you can use a CNC to etch and drill your own PCB: https://forum.mysensors.org/topic/8735/cnc-pcb-milling

                  A board such as yours would be fairly easy to do that way.

                  jeremushkaJ Offline
                  jeremushkaJ Offline
                  jeremushka
                  wrote on last edited by
                  #673

                  @neverdie thanks for the advice. Maybe i can first try pcb transfer with laser printer and chemical etching.

                  bjacobseB 1 Reply Last reply
                  0
                  • jeremushkaJ jeremushka

                    @neverdie thanks for the advice. Maybe i can first try pcb transfer with laser printer and chemical etching.

                    bjacobseB Offline
                    bjacobseB Offline
                    bjacobse
                    wrote on last edited by
                    #674

                    @jeremushka
                    I have used that several times with good results, though do not make wires too narrow and put them too close to each other.

                    1 Reply Last reply
                    0
                    • zboblamontZ zboblamont

                      Not so much a MySensors build as an example of how even the most basic information can inform changes for the better, in this case space heating.

                      The system here is fairly basic, an array of DS18B20s, some ultrasonic tank probes and a gas reed sensor, temperature is updated every 5 minutes, the gas updates every 0.05m3...
                      With winters here down to -20, the first priority last year was insulation, and even though a modern house, the gas bills essentially halved over the year, effectively funding not only the insulation, but replacement axial radiator valves and thermostat heads (Heimeier) to replace the typical arrangement of unknown origin, with spare... But now the MySensors impact..
                      This autumn's attention turned to the central heating unit, a modern combi unit of good manufacture, installed by a 'certified' heating engineer, but aside what little I knew about condensation boilers and the steep learning curve that followed, I was bemused by the return from the radiator loop almost burning my finger within 10 minutes of the system being fired up. This did not make sense for what I understood of a condensing boilers, which compelled a look inside for the first time, the manual and some googling.

                      The boiler is a 25kW combi with minimum output 7.6kW, the radiators account for ca 13kW at Delta 60 set for 15c drop (previously set ca 20c drop), settings since day one were 65c and the pump was set at max output of 3, last year's -20 resulted in 13.5m3/day gas consumed, not crazy by historical records, but hmmm.
                      So now comes tinkering with data from MySensors via Domoticz to inform...
                      Currently the boiler is set at 55c, the pump is on Low (40 v 84w), but the results are surprising - Slower rising temperature when ON, 42 minutes v 25, but gas use dropped from 0.75 to 0.6m3, but here's the kicker from that longer heating time, not only less energy used per cycle, but longer and thereby fewer cycles per day. Current evaluations are between 15 and 20% savings, so thank you to all the MySensors community and contributors.. ;)

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

                      @zboblamont lowering water temperature and pump speed is expected to use less energy, but have you considered the time it takes now to reach the set room temperature compared to what you had before?

                      1 Reply Last reply
                      0
                      • zboblamontZ Offline
                        zboblamontZ Offline
                        zboblamont
                        wrote on last edited by zboblamont
                        #676

                        @gohan Sorry, had to edit original post which was too confused on re-reading.
                        The pump speed curves determine the pressure and flow rate to the radiators, it is the radiators which determine the actual flow for a given temperature drop across them, and speed in raising room temperatures.
                        The combined flow rate for all the radiators falls within the lower pump curve, any increase in pump speed only increases pressure, NOT speed of heating.
                        Aside the original mis-set HIGH rate on the pump, there are 3 manual valves left in the system, and no matter how close I try to balance them it was always a compromise, and heat inevitably goes back to the return as pressure increases
                        Once these are replaced with flow control version in the next week, it will not matter what the pressure is, the radiator flows will be capped at the most efficient level.

                        1 Reply Last reply
                        0
                        • D Offline
                          D Offline
                          dakipro
                          wrote on last edited by dakipro
                          #677

                          My wife said "I do not want to see "those things""...
                          Challenge accepted!

                          0_1544224086865_TV LED display 1 - 20181207_171500.jpg

                          1_1544224086867_TV LED display 2 - 20181207_183612.jpg

                          0_1544224266422_MVI_5770.00_00_03_13.Still001.jpg

                          (see the gif in action here https://ibb.co/BCbS2Dc )

                          C: OpenHAB2 with node-red on linux laptop
                          GW: Arduino Nano - W5100 Ethernet, Nrf24l01+ 2,4Ghz mqtt
                          GW: Arduino Mega, RFLink 433Mhz

                          sundberg84S Nca78N bjacobseB 3 Replies Last reply
                          14
                          • E Offline
                            E Offline
                            executivul
                            wrote on last edited by executivul
                            #678

                            Milled some PCA9615 differential I2C converters for the sensors ouside: magnetometer for the gas meter, temp/hum, baro.
                            Until now I've used a 7 meter long cable, but whenever the gas water heater fired up the Arduino would just freeze losing the count of gas pulses, I've tried shielded cable but it hasn't solved the issue.
                            Since Sparkfun's breakout boards are on the wrong side of the pond I decided to make my own.
                            Really hope the Arduino doesn't lock up anymore.

                            LE. That TSSOP10 was a b*tch to solder 😁

                            0_1544228821399_IMG_20181207_192354.jpg 0_1544228904350_IMG_20181207_200947.jpg 0_1544228912010_IMG_20181208_000800.jpg

                            1 Reply Last reply
                            3
                            • D dakipro

                              My wife said "I do not want to see "those things""...
                              Challenge accepted!

                              0_1544224086865_TV LED display 1 - 20181207_171500.jpg

                              1_1544224086867_TV LED display 2 - 20181207_183612.jpg

                              0_1544224266422_MVI_5770.00_00_03_13.Still001.jpg

                              (see the gif in action here https://ibb.co/BCbS2Dc )

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

                              @dakipro woaw!!! 👏

                              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
                              • D dakipro

                                My wife said "I do not want to see "those things""...
                                Challenge accepted!

                                0_1544224086865_TV LED display 1 - 20181207_171500.jpg

                                1_1544224086867_TV LED display 2 - 20181207_183612.jpg

                                0_1544224266422_MVI_5770.00_00_03_13.Still001.jpg

                                (see the gif in action here https://ibb.co/BCbS2Dc )

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

                                @dakipro thank you that's what I planned to do but wasn't sure it would be visible through the plastic layer.
                                Coupled with capacitive sensors it could give awesome results !

                                D 1 Reply Last reply
                                0
                                • D dakipro

                                  My wife said "I do not want to see "those things""...
                                  Challenge accepted!

                                  0_1544224086865_TV LED display 1 - 20181207_171500.jpg

                                  1_1544224086867_TV LED display 2 - 20181207_183612.jpg

                                  0_1544224266422_MVI_5770.00_00_03_13.Still001.jpg

                                  (see the gif in action here https://ibb.co/BCbS2Dc )

                                  bjacobseB Offline
                                  bjacobseB Offline
                                  bjacobse
                                  wrote on last edited by
                                  #681

                                  @dakipro
                                  great job :-)
                                  , and also the show on TV is quite funny, those two Englishmen in US buying old cars renovating and selling those

                                  1 Reply Last reply
                                  0
                                  • Nca78N Nca78

                                    @dakipro thank you that's what I planned to do but wasn't sure it would be visible through the plastic layer.
                                    Coupled with capacitive sensors it could give awesome results !

                                    D Offline
                                    D Offline
                                    dakipro
                                    wrote on last edited by
                                    #682

                                    @nca78 I used white decorative self adhesive wallpaper, so not sure which plastic you are planing to use, but you can easily test that before mounting I think. If you go for paper/foil, put some one-peace plastic in front of the displays as they (mine) are not perfectly soldered in line, so they are noticeable sa foil will glue to them. Not a big deal for me, but would love "the perfection". But yeah, plastic or some harder material would work awesome I think.

                                    All in all, not difficult project and a very high wow-factor/time-spent value (and waf)

                                    C: OpenHAB2 with node-red on linux laptop
                                    GW: Arduino Nano - W5100 Ethernet, Nrf24l01+ 2,4Ghz mqtt
                                    GW: Arduino Mega, RFLink 433Mhz

                                    Nca78N bjacobseB 2 Replies Last reply
                                    0
                                    • D dakipro

                                      @nca78 I used white decorative self adhesive wallpaper, so not sure which plastic you are planing to use, but you can easily test that before mounting I think. If you go for paper/foil, put some one-peace plastic in front of the displays as they (mine) are not perfectly soldered in line, so they are noticeable sa foil will glue to them. Not a big deal for me, but would love "the perfection". But yeah, plastic or some harder material would work awesome I think.

                                      All in all, not difficult project and a very high wow-factor/time-spent value (and waf)

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

                                      @dakipro ah ok you cheated :D

                                      I thought you kept the plastic layer that's glued on top of the wood panel. I'll try to get some samples from the company selling those here and make some tests then.

                                      1 Reply Last reply
                                      0
                                      • D dakipro

                                        @nca78 I used white decorative self adhesive wallpaper, so not sure which plastic you are planing to use, but you can easily test that before mounting I think. If you go for paper/foil, put some one-peace plastic in front of the displays as they (mine) are not perfectly soldered in line, so they are noticeable sa foil will glue to them. Not a big deal for me, but would love "the perfection". But yeah, plastic or some harder material would work awesome I think.

                                        All in all, not difficult project and a very high wow-factor/time-spent value (and waf)

                                        bjacobseB Offline
                                        bjacobseB Offline
                                        bjacobse
                                        wrote on last edited by
                                        #684

                                        @dakipro
                                        BTW I can only recommend to spray your bare cobber wires with Plastic 70, as this will protect your cobber from corrosion with a thin layer acrylic

                                        0_1544345727981_plastik_70.png

                                        1 Reply Last reply
                                        0
                                        • alexsh1A Offline
                                          alexsh1A Offline
                                          alexsh1
                                          wrote on last edited by alexsh1
                                          #685

                                          Try this one.
                                          The smallest board I have ever assembled using just a hot fan. A solar battery charger based on BQ25504 from a solar panel. Almost all components are 0402. Far too small for my liking, but can go under the solar panel.

                                          0_1546964306401_FFE84E8C-991D-4342-8272-2180F79333A8.jpeg

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


                                          10

                                          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