Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. meanmrgreen
    3. Posts
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Posts made by meanmrgreen

    • RE: Which 3D modelling software do you prefer for 3D printing *and* CNC?

      I've been tinkering with 3d printing for about a year now and never had any experience before.

      Tried most softwares out there that are free and seem to allways comeback to fusion 360.

      For slicing I like slic3r PE in the free tier, even tho its interface looks dated it has some very nice features and handles material/printing profiles really great.

      But if u want an all in one package it's simplify 3d. Even tho you don't get the same control as slic3r and it doesn't handle material profiles as good.

      It has a clean interface, great gcode preview and a few killer features like custom supports (yes there are other slickers with this aswell) and multi processing that lets you switch profiles anywhere in the print or model.

      Yes it's a big price now days for a piece of software. But if you are going to use it alot it is well worth it's price.

      posted in Enclosures / 3D Printing
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ In Wall AC/DC Pcb (with Relay) for MySensors (SMD)

      https://photos.app.goo.gl/JBIVogCZMp0mOCVh2

      I must have been drunk when I ordered this. Any idea what I have ordered? I ordered thru dirtypcbs somehow.

      Does look a little bit like this PCB but not really. Have I found a early version and drunk ordered 10 of em?

      posted in OpenHardware.io
      meanmrgreen
      meanmrgreen
    • RE: Distance Sensor with long range (8-10 meters) ?

      Extension cord it is!

      posted in Hardware
      meanmrgreen
      meanmrgreen
    • Distance Sensor with long range (8-10 meters) ?

      Just started my project of monitoring the water level in our water tank. I have bought that waterproof sensor from the hardware guide but it only reports around 2 meters in testing.

      Problem is that i have about 8 meters down to the water level so i either need to lengthen the cable to the sensor by about 6-7 meters down the hole or find another sensor to do the job.

      Any idea? this will not be battery powered so no issues there.

      posted in Hardware
      meanmrgreen
      meanmrgreen
    • RE: Windows GUI/Controller for MySensors

      @tekka
      How about I'f i replace my serial with a Ethernet gw?

      Do not want my pc running all the time. Just to debug

      posted in Controllers
      meanmrgreen
      meanmrgreen
    • RE: Windows GUI/Controller for MySensors

      Ok this might be a realy stupid question but im what you call a "nuub" πŸ˜‰

      If i want to monitor my current setup (serial gateway on a pi3) on windows/mint. Do i build another gateway and plug it in the pc?

      Sorry if i missed the instructions on this

      posted in Controllers
      meanmrgreen
      meanmrgreen
    • RE: Building a few repeaters "just in case" bad idea?

      @sundberg84

      Yeah trial and error I guess. I have an outlet outside that I could put a repeater in so i might start with that one.

      And caps are on all my nodes so far πŸ˜‰

      posted in General Discussion
      meanmrgreen
      meanmrgreen
    • RE: 'getConfig' was not declared in this scope (V2.1.1) - FIXED

      Thank you πŸ™‚
      Where can you find these changes?

      posted in Troubleshooting
      meanmrgreen
      meanmrgreen
    • Building a few repeaters "just in case" bad idea?

      Heres the deal
      I dont live in a giant house but the walls of the house are pretty thick (inside around 30cm and the outside walls are around 45-50cm) the outside are mostly made of wood, have one wall around my heatersystem that is concrete.

      I spent days debugging a masterpiece of a mailbox / light sensor that was battery powered and when it finaly was soldered and working as i wanted i happely strolled down to the mailbox (around 50 meters from the house) to install the thing..

      Aaaand lost contact, rebooted, walked 10 meters up, rebooted, 10 meters up and so on until i basicly where at the otherside of the wall to my gateway.

      So i searched for the solution and found repeaters!
      So far i have built 2 of them and placed em togheter with nonsleeping PIRs. And i think they are working, no idea how to tell if they actualy are repeating anything.

      The plan is too build a few more in the house and atleast 1 outside where i have power, just to be safe that the range is optimal around the house and a bit outside of the house.
      But i read a post in here about repeater looping problems and such so is it a bad idea to install extras even tho it might not be needed?

      posted in General Discussion
      meanmrgreen
      meanmrgreen
    • RE: Office plant monitoring

      I need to check my node. It Constantly shows 80-90%. Have switched forks and plant same number. If I pull it out of the dirt it gets to 0%

      Using only the fork no board in the middle with the alternate current sketch.

      posted in My Project
      meanmrgreen
      meanmrgreen
    • RE: Multiple child values after trying different sketches?

      I rebooted domoticz and it got the right values for the childs πŸ™‚

      posted in Domoticz
      meanmrgreen
      meanmrgreen
    • Multiple child values after trying different sketches?

      alt text

      Any tips of geting rid of unwanted values from the child's here?

      Have been debugging and experimenting with a lot of different sketches and I finally got it to work. But old values are still in there.

      posted in Domoticz
      meanmrgreen
      meanmrgreen
    • RE: A beginners question
      /**
       * The MySensors Arduino library handles the wireless radio link and protocol
       * between your home built sensors/actuators and HA controller of choice.
       * The sensors forms a self healing radio network with optional repeaters. Each
       * repeater and gateway builds a routing tables in EEPROM which keeps track of the
       * network topology allowing messages to be routed to nodes.
       *
       * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
       * Copyright (C) 2013-2015 Sensnology AB
       * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
       *
       * Documentation: http://www.mysensors.org
       * Support Forum: http://forum.mysensors.org
       *
       * This program is free software; you can redistribute it and/or
       * modify it under the terms of the GNU General Public License
       * version 2 as published by the Free Software Foundation.
       *
       *******************************
       *
       * REVISION HISTORY
       * Version 1.0 - Henrik Ekblad
       * 
       * DESCRIPTION
       * Motion Sensor example using HC-SR501 
       * http://www.mysensors.org/build/motion
       *
       */
      //Enable Repeater
      #define MY_REPEATER_FEATURE
      
      // Enable debug prints
      #define MY_DEBUG
      
      // Enable and select radio type attached
      #define MY_RADIO_NRF24
      //#define MY_RADIO_RFM69
      
      #include <SPI.h>
      #include <MySensors.h>
      #include <DHT.h>
      
      unsigned long SLEEP_TIME = 120000; // Sleep time between reports (in milliseconds)
      #define DIGITAL_INPUT_SENSOR 2   // The digital input you attached your motion sensor.  (Only 2 and 3 generates interrupt!)
      #define DHT_DATA_PIN 4
      #define CHILD_ID_MOT 1   // Id of the sensor child
      #define CHILD_ID_HUM 0
      #define CHILD_ID_TEMP 2
      
      // Set this offset if the sensor has a permanent small offset to the real temperatures
      #define SENSOR_TEMP_OFFSET 0
      
      // Sleep time between sensor updates (in milliseconds)
      // Must be >1000ms for DHT22 and >2000ms for DHT11
      static const uint64_t UPDATE_INTERVAL = 120000;
      
      // Force sending an update of the temperature after n sensor reads, so a controller showing the
      // timestamp of the last update doesn't show something like 3 hours in the unlikely case, that
      // the value didn't change since;
      // i.e. the sensor would force sending an update every UPDATE_INTERVAL*FORCE_UPDATE_N_READS [ms]
      static const uint8_t FORCE_UPDATE_N_READS = 10;
      
      float lastTemp;
      float lastHum;
      uint8_t nNoUpdatesTemp;
      uint8_t nNoUpdatesHum;
      bool metric = true;
      
      // Initialize motion message
      MyMessage msg(CHILD_ID_MOT, V_TRIPPED);
      MyMessage msgHum(CHILD_ID_HUM, V_HUM);
      MyMessage msgTemp(CHILD_ID_TEMP, V_TEMP);
      DHT dht;
      
      void presentation()  {
        // Send the sketch version information to the gateway and Controller
        sendSketchInfo("PIR_DHT_REPEATER", "1.0");
      
        // Register all sensors to gw (they will be created as child devices)
        present(CHILD_ID_MOT, S_MOTION);
        present(CHILD_ID_HUM, S_HUM);
        present(CHILD_ID_TEMP, S_TEMP);
      
        metric = getConfig().isMetric;
      }
      
      void setup()  
      {  
        pinMode(DIGITAL_INPUT_SENSOR, INPUT);      // sets the motion sensor digital pin as input
        
        dht.setup(DHT_DATA_PIN); // set data pin of DHT sensor
        if (UPDATE_INTERVAL <= dht.getMinimumSamplingPeriod()) {
        Serial.println("Warning: UPDATE_INTERVAL is smaller than supported by the sensor!");
        } 
        // Sleep for the time of the minimum sampling period to give the sensor time to power up
        // (otherwise, timeout errors might occure for the first reading)
        wait(dht.getMinimumSamplingPeriod());
      }
      
      void loop()     
      {     
        // Read digital motion value
        boolean tripped = digitalRead(DIGITAL_INPUT_SENSOR) == HIGH; 
            
        Serial.println(tripped);
        send(msg.set(tripped?"1":"0"));  // Send tripped value to gw 
        // Force reading sensor, so it works also after wait()
        dht.readSensor(true);
        // Get temperature from DHT library
        float temperature = dht.getTemperature();
        if (isnan(temperature)) {
          Serial.println("Failed reading temperature from DHT!");
        } else if (temperature != lastTemp || nNoUpdatesTemp == FORCE_UPDATE_N_READS) {
          // Only send temperature if it changed since the last measurement or if we didn't send an update for n times
          lastTemp = temperature;
          if (!metric) {
            temperature = dht.toFahrenheit(temperature);
          }
          // Reset no updates counter
          nNoUpdatesTemp = 0;
          temperature += SENSOR_TEMP_OFFSET;
          send(msgTemp.set(temperature, 1));
      
          #ifdef MY_DEBUG
          Serial.print("T: ");
          Serial.println(temperature);
          #endif
        } else {
          // Increase no update counter if the temperature stayed the same
          nNoUpdatesTemp++;
        }
      
        // Get humidity from DHT library
        float humidity = dht.getHumidity();
        if (isnan(humidity)) {
          Serial.println("Failed reading humidity from DHT");
        } else if (humidity != lastHum || nNoUpdatesHum == FORCE_UPDATE_N_READS) {
          // Only send humidity if it changed since the last measurement or if we didn't send an update for n times
          lastHum = humidity;
          // Reset no updates counter
          nNoUpdatesHum = 0;
          send(msgHum.set(humidity, 1));
          
          #ifdef MY_DEBUG
          Serial.print("H: ");
          Serial.println(humidity);
          #endif
        } else {
          // Increase no update counter if the humidity stayed the same
          nNoUpdatesHum++;
        }
      
        // wait until interrupt comes in on motion sensor. Send update every two minute.
        wait(SLEEP_TIME);
      }
      
      
      
      
      posted in General Discussion
      meanmrgreen
      meanmrgreen
    • RE: A beginners question

      this is it.

      https://create.arduino.cc/editor/meanmrgreen/e7e0219e-139a-4e89-88da-e02f0864e9c6/preview

      not sure of link worksge. on phone atm. will paste it from comp later if its not working.

      posted in General Discussion
      meanmrgreen
      meanmrgreen
    • RE: A beginners question

      @mfalkvidd

      Hmm i have a combined sketch of the pir and dht example that works fine on a node that Can Sleep for a bit and interrupt with change on the pir.

      But if i take that sketch and change the Sleep with interrupt to a wait(sleep_time) the pir is not registrering movement between wait Times'.

      FIf i remove the wait alltoghter the pir is reporting the status every ms instead with the result that the dht can't read the temp!

      posted in General Discussion
      meanmrgreen
      meanmrgreen
    • RE: A beginners question

      About to built a dht / pir / repeater.
      Since i cant Sleep it do i need to change all sleep with wait?

      In the dht example there is a Sleep to let the sensor settle before Reading. Should this be a wait instead then?

      posted in General Discussion
      meanmrgreen
      meanmrgreen
    • RE: Waterproof Lux Sensor

      This is what i did, the box should be the mailbox right now but aprently i need to build a few relay nodes aswell.

      0_1485270266959_ljus.JPG image url)

      posted in Hardware
      meanmrgreen
      meanmrgreen
    • RE: Waterproof Lux Sensor

      @rnollen

      I am about to set a lux sensor outside any day now (as soon as the debugging is complete that is).
      And i am going to place the board inside a glassjar, drill a hole in the top and seal the cables using a gluegun or similar.

      Should be waterproof then right?

      posted in Hardware
      meanmrgreen
      meanmrgreen
    • RE: Magnetswitch + LUX sensor = false positives

      I think i solved it by replacing the tripped code with this modificed code from
      https://codebender.cc/example/MySensor/BinarySwitchSleepSensor#BinarySwitchSleepSensor.ino

      {
      uint8_t value;
      static uint8_t sentValue=2;
      // Short delay to allow buttons to properly settle
      sleep(5);
      value = digitalRead(BUTTON_PIN);

        if (value != sentValue) {
       // Value has changed from last transmission, send the updated value
       send(msg.set(value==HIGH ? 1 : 0));
       sentValue = value;
        }
      posted in Troubleshooting
      meanmrgreen
      meanmrgreen
    • RE: Magnetswitch + LUX sensor = false positives

      @mfalkvidd

      Thanks alot for all the help with My newbie arduino questions. Ill try the wait statement later

      posted in Troubleshooting
      meanmrgreen
      meanmrgreen
    • RE: Magnetswitch + LUX sensor = false positives

      Well it seems to be the debounce thing that is Messing with me.

      How can u remove false positives when battery powered?

      posted in Troubleshooting
      meanmrgreen
      meanmrgreen
    • Magnetswitch + LUX sensor = false positives

      Im trying to combine some sketches in hope to create something that should monitor my mailbox and read the light outside while powering the thing by battery!

      Right now i have basicly cut and pasted the 3 sketches for the switch/battery power and light sensor and have em hooked up on a uno with breadboard. Using USB connection to power it.

      Started with switch and sleep interupt and it worked fine. Removed the debounce since it couldnt be used while sleeping aprently (nuub here)

      Added battery sketch and it seem to be working..

      THEN i put in the damn lux meter and all hell broke lose.
      Everytime i trigger the switch now it starts sending status like crazy to the gw, im talking light speed.

      And while its sending and the switch is seperated it allso gets alot of false positives (or negatives the way you look at it)

      The Battery voltage can be ignored since it isnt even powered by battery or have anything from that hook up on the breadboard.

      And the other thing i noticed is that if i leave the switch closed and let it do its sleep time thing. It reports every 5 minutes! how can that be when i have put the sleep time to 1800000ms, that should if i counted correctly equal to a reading every 30 minutes?

      It seems to be reading the lux and the switch right in domoticz but as said the switch goes on and off.

      Below is a snipped from serial monitor when it goes haywire.

      3061 TSF:MSG:SEND,5-5-0-0,s=1,c=1,t=16,pt=0,l=1,sg=0,ft=0,st=OK:0
      693
      Battery Voltage: 2.33 V
      Battery percent: 69 %
      3070 TSF:MSG:SEND,5-5-0-0,s=255,c=3,t=0,pMSG:SEND,5-5-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:71
      403
      2988 MCO:SLP:MS=1800000,SMS=0,I1=1,M1=1,I2=255,M2=255
      2993 MCO:SLP:TPD
      2995 MCO:SLP:WUP=1
      1
      2998 TSF:MSG:SEND,5-5-0-0,s=1,c=1,t=16,pt=0,l=1,sg=0,ft=0,st=OK:1
      692
      Battery Voltage: 2.33 V
      Battery percent: 69 %
      3007 TSF:MSG:SEND,5-5-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:69
      404
      3017 TSF:MSG:SEND,5-5-0-0,s=2,c=1,t=23,pt=3,l=2,sg=0,ft=0,st=OK:404
      3023 MCO:SLP:MS=1800000,SMS=0,I1=1,M1=1,I2=255,M2=255
      3028 MCO:SLP:TPD
      3031 MCO:SLP:WUP=1
      1
      3034 TSF:MSG:SEND,5-5-0-0,s=1,c=1,t=16,pt=0,l=1,sg=0,ft=0,st=OK:1
      701
      Battery Voltage: 2.36 V
      Battery percent: 70 %
      3043 TSF:MSG:SEND,5-5-0-0,s=255,c=3,t=0,pt=1,l=1,sg=0,ft=0,st=OK:70
      404
      3051 MCO:SLP:MS=1800000,SMS=0,I1=1,M1=1,I2=255,M2=255
      3056 MCO:SLP:TPD
      3058 MCO:SLP:WUP=1
      0

      /**
       * The MySensors Arduino library handles the wireless radio link and protocol
       * between your home built sensors/actuators and HA controller of choice.
       * The sensors forms a self healing radio network with optional repeaters. Each
       * repeater and gateway builds a routing tables in EEPROM which keeps track of the
       * network topology allowing messages to be routed to nodes.
       *
       * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
       * Copyright (C) 2013-2015 Sensnology AB
       * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
       *
       * Documentation: http://www.mysensors.org
       * Support Forum: http://forum.mysensors.org
       *
       * This program is free software; you can redistribute it and/or
       * modify it under the terms of the GNU General Public License
       * version 2 as published by the Free Software Foundation.
       *
       *******************************
       *
       * DESCRIPTION
       *
       * Simple binary switch example 
       * Connect button or door/window reed switch between 
       * digitial I/O pin 3 (BUTTON_PIN below) and GND.
       * http://www.mysensors.org/build/binary
       *
       * Arduino BH1750FVI Light sensor
       * communicate using I2C Protocol
       * this library enable 2 slave device addresses
       * Main address  0x23
       * secondary address 0x5C
       * connect the sensor as follows :
       *
       *   VCC  >>> 5V
       *   Gnd  >>> Gnd
       *   ADDR >>> NC or GND  
       *   SCL  >>> A5
       *   SDA  >>> A4
       * http://www.mysensors.org/build/light
       */
      
      // Enable debug prints to serial monitor
      #define MY_DEBUG 
      
      // Enable and select radio type attached
      #define MY_RADIO_NRF24
      //#define MY_RADIO_RFM69
      
      #include <SPI.h>
      #include <MySensors.h>
      #include <BH1750.h>
      #include <Wire.h>
      
      #define CHILD_ID_LIGHT 2
      #define CHILD_ID_BUTTON 1
      #define BUTTON_PIN 3  // Arduino Digital I/O pin for button/reed switch
      unsigned long SLEEP_TIME = 1800000; // Sleep time between reports (in milliseconds)
      int BATTERY_SENSE_PIN = A0;  // select the input pin for the battery sense point
      int oldBatteryPcnt = 0;
      
      BH1750 lightSensor;
      
      MyMessage msg(CHILD_ID_BUTTON, V_TRIPPED);
      MyMessage msglux(CHILD_ID_LIGHT, V_LIGHT_LEVEL);
      
      uint16_t lastlux;
      
      void setup()
      { 
        lightSensor.begin();
      
      // use the 1.1 V internal reference
      #if defined(__AVR_ATmega2560__)
      	analogReference(INTERNAL1V1);
      #else
      	analogReference(INTERNAL);
      #endif 
      }
      
      void presentation() {
        // Send the sketch version information to the gateway and Controller
        sendSketchInfo("Switch_Light", "1.0");
        // Register binary input sensor to gw (they will be created as child devices)
        // You can use S_DOOR, S_MOTION or S_LIGHT here depending on your usage. 
        // If S_LIGHT is used, remember to update variable type you send in. See "msg" above.
        present(CHILD_ID_BUTTON, S_DOOR);
        present(CHILD_ID_LIGHT, S_LIGHT_LEVEL);
      
      }
      
      void loop()     
        {
          
        // Read digital motion value
        boolean tripped = digitalRead(BUTTON_PIN) == HIGH; 
      
        Serial.println(tripped);
        send(msg.set(tripped?"1":"0"));  // Send tripped value to gw 
      
      // get the battery Voltage
      	int sensorValue = analogRead(BATTERY_SENSE_PIN);
      #ifdef MY_DEBUG
      	Serial.println(sensorValue);
      #endif
      	// 1M, 470K divider across battery and using internal ADC ref of 1.1V
      	// Sense point is bypassed with 0.1 uF cap to reduce noise at that point
      	// ((1e6+470e3)/470e3)*1.1 = Vmax = 3.44 Volts
      	// 3.44/1023 = Volts per bit = 0.003363075
      
      	int batteryPcnt = sensorValue / 10;
      
      #ifdef MY_DEBUG
      	float batteryV  = sensorValue * 0.003363075;
      	Serial.print("Battery Voltage: ");
      	Serial.print(batteryV);
      	Serial.println(" V");
      	Serial.print("Battery percent: ");
      	Serial.print(batteryPcnt);
      	Serial.println(" %");
      #endif
      
      	if (oldBatteryPcnt != batteryPcnt) {
      		// Power up radio after sleep
      		sendBatteryLevel(batteryPcnt);
      		oldBatteryPcnt = batteryPcnt;
      		}
      
             
        uint16_t lux = lightSensor.readLightLevel();// Get Lux value
        Serial.println(lux);
        if (lux != lastlux) {
            send(msglux.set(lux));
            lastlux = lux;
            }
        
        // Sleep until interrupt comes in on motion sensor
        sleep(digitalPinToInterrupt(BUTTON_PIN), HIGH, SLEEP_TIME);
      }```
      posted in Troubleshooting
      meanmrgreen
      meanmrgreen
    • RE: Domoticz now supports the MySensors MQTT Gateway

      @jpaulin

      I havent built much yet so i gain nothing by replacing my serial gateway with a mqtt?
      using domoticz/rflink

      posted in Domoticz
      meanmrgreen
      meanmrgreen
    • RE: Domoticz now supports the MySensors MQTT Gateway

      As a newbie that only so far built 2 sensors and a serial gateway.

      What is better with this kind of gateway?
      Should I build one instead of the serial one I use now?

      posted in Domoticz
      meanmrgreen
      meanmrgreen
    • RE: Office plant monitoring

      @mfalkvidd

      Ok πŸ™‚
      But Its normal just to lower by a few percent in a few days time?

      posted in My Project
      meanmrgreen
      meanmrgreen
    • RE: Office plant monitoring

      Small problem with my plant sensor. Used only the fork and the reverse polarity.

      But the sensor is reporting around 80-70% all the time, alltho the plant is pretty dry.

      When i remove the sensor from pot it shows 0% ?

      Can you calibrate the fork somehow?

      posted in My Project
      meanmrgreen
      meanmrgreen
    • RE: SCT-013-030 Energy Meter

      Sorry for nuub question but can you use a pro mini 3.3 fΓΆr this?
      Or do i need a nano or pro mini 5v?

      posted in My Project
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ Air Humidity Sensor - DHT

      @flopp

      thats the irq pin in the radio post.
      Not used by the radio

      posted in Announcements
      meanmrgreen
      meanmrgreen
    • RE: Office plant monitoring

      @Stric

      Does reverse polarity really help with corrosion then? Maybe it has something to do with that.

      posted in My Project
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ Battery Powered Sensors

      Yes i do.
      This is like going back to school... but fun!

      posted in Announcements
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ Battery Powered Sensors

      Realy n00b in electronics here but do you need to use those exact values of the resistors when hooking this up?

      posted in Announcements
      meanmrgreen
      meanmrgreen
    • RE: Measuring battery

      @sundberg84
      Will look into that, i have a UNO lying around aswell so prehaps ill experiment with the bootloader burning eventually.

      posted in My Project
      meanmrgreen
      meanmrgreen
    • RE: Measuring battery

      @carmelo42

      How does this work when using a booster?

      posted in My Project
      meanmrgreen
      meanmrgreen
    • RE: Office plant monitoring

      I made a node with 1 fork and it works great!

      Any tips on how i can use more than one fork to monitor say 3-4 plants?

      posted in My Project
      meanmrgreen
      meanmrgreen
    • RE: Office plant monitoring

      @Tetnobic i tried this and Ended up with a soil sensor that didn't display % but something called cb?

      But yeah it works.

      posted in My Project
      meanmrgreen
      meanmrgreen
    • RE: Office plant monitoring

      If I use more than one sensor for this. It still will only monitor one plant right? Or can I say monitor 3-4 plants with one node?

      posted in My Project
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ Building a Serial Gateway

      If i want to update the gateway to 2.1, do i just need to download the master and reupload this scetch to it?
      Do i need to do that to all my sensors aswell?
      i am on 2.0 right now

      posted in Announcements
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ Door, Window and Push-button Sensor

      You lost me at bluetooth beacon? πŸ™‚

      Me personally is using the app but wifey and kids ain't really as interested as i am πŸ˜‰

      So therefore I would need a indicator of some sorts around the mailbox that is about 30 meters from the house in the road up to the house.

      Maybe a solar led light or similar to light up? Or a flag on a servo?

      Will start with building the switch and figure out the indicator later.

      posted in Announcements
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ Door, Window and Push-button Sensor

      Nuub here..
      Thinking about building this in my mailbox..
      AND if possible set a green light diode to start light when box is opened and stop when its opened again.

      That way i would see when i come home if someone has opened the mailbox or not.. Sure push notifications work aswell but it would be a nice touch for the wifey

      posted in Announcements
      meanmrgreen
      meanmrgreen
    • RE: Combine RFlink Gateway instead of building mysensors gateway?

      Hmmm found out that it only will recieve data not send it.

      Oh well, another gateway it is πŸ™‚

      posted in Hardware
      meanmrgreen
      meanmrgreen
    • Combine RFlink Gateway instead of building mysensors gateway?

      First off im fresh of the boat and is about to begin my first projects.

      I have a few 433mhz switches in the house already and zwave is expensive i went and bought an arduino mega and a 433mhz transmitter/reciver and hooked em up last night.

      Using em in domoticz.

      The question is.. I have a order of alot of stuff from aliexpress for mysensors projects incomming.
      The plan was to build a usb gateway and use it on the same raspberry as my RFlink gateway.

      But now i see that the RFlink supports mysensors since oktober 2016?
      Does this mean if i add a 2,4ghz trancever on my mega i can controll both my 433mhz AND the mysensors network from it?

      Ive tried googleing and searching but i cant get any clear answer.
      Anyone with knowlage about this

      posted in Hardware
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ Air Humidity Sensor - DHT

      Finaly got it to compile.
      I tried the library link above but no go, cleared out everything about ardouino on the pc, no go.

      I finaly stubled onto this:
      https://github.com/mysensors/MySensorsArduinoExamples
      Downloaded all the expample libraries, loaded the scetch and it worked!

      Something is up with the linked library on this page i think

      posted in Announcements
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ Air Humidity Sensor - DHT

      @mikeS thanks alot!
      I'll keep that in mind. Should be getting my "starter kit" order soon from eBay so we'll see how it goes πŸ˜‰

      posted in Announcements
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ Air Humidity Sensor - DHT

      @mikeS

      Ive tried to reinstall and start frΓ₯n scratch but i guess i Missed something.

      posted in Announcements
      meanmrgreen
      meanmrgreen
    • RE: πŸ’¬ Air Humidity Sensor - DHT

      @Jim Danforth
      Getting the same, have tried a number of different DHT libraries and cant get it to compile.

      posted in Announcements
      meanmrgreen
      meanmrgreen