Skip to content

Troubleshooting

Help! Everything just falls apart
2.7k Topics 21.5k Posts
  • How to get time a sensor has slept

    9
    0 Votes
    9 Posts
    2k Views
    rejoe2R
    @Heizelmann My answer also presumed using sleep() in the main loop, but to combine it with a seperate ISR. This concept seems to work, at least this was my conclusion when reading the mentioned PulseCounter-sketch, that can be configured as sleeping or non-sleeping node. But I may be wrong, all my nodes are on power supplies until now...
  • 0 Votes
    22 Posts
    4k Views
    A
    @rejoe2 Right... :-) I may look into this. For now I will try to get a stable version and load it without bootloader directly via usbasp...
  • TSM:FPAR:No Reply

    42
    0 Votes
    42 Posts
    13k Views
    N
    Ok, spent half the day trying to figure out what I was doing wrong and all I had to do was read the forum. The radios I purchase were junk. Not one of the 10 worked. Had everything placed on a board figured my workmanship was a little off or something. The radio was last to be checked. WOOOOOOWWWWO Thanks Everyone this post saved me a lot more time.
  • problem in compile gateway for raspberry

    3
    0 Votes
    3 Posts
    1k Views
    R
    sorry i found . spi was disable in now raspbian. but now i have problem in domoticz: [image: 1505122166351-untitled.jpeg]
  • ESP01 DHT22 MQTT MYSQL Node-Red

    1
    2
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • [SOLVED] Node Sensor affecting local sensors on GW.

    7
    0 Votes
    7 Posts
    2k Views
    mfalkviddM
    Great work @korttoma Thanks for reporting back!
  • WS2812B - Information LEDs blinking

    2
    0 Votes
    2 Posts
    1k Views
    YveauxY
    @MiKa this is not supported by default by the library. Using the indication callback however, it is possible. Have a look at this project to get some inspiration: https://www.openhardware.io/view/349/MySensors-ESP8266-MQTT-gateway
  • I have great problem with raspberry and domoticz and mysensors gateway !

    42
    0 Votes
    42 Posts
    10k Views
    R
    ok thank you. but i have a new problem... i think just move domoticz.log to ram driver. but report of sensors in mysensors... where these is save?:/ i think report of mysensors can not write... now in domoticz log i can not see report.. also i chack var/log memory after 1 day.when i send command for turn on light (alot command) memory of var/log increase.but 1 day i dont send any command and i wait for increase memory with report sensors but dont increase.what is problem? when i change your setting to defult work and i see report of sensors. [image: 1505027225766-lklklklk.jpeg] and this is memory of log after one day. sensors was sending report to controller for 1 deys but before memory was 1304 and now is 1304... [image: 1505027264531-jkjkj.jpeg]
  • NRF24L01 data missing of layer 2 every nodes

    3
    0 Votes
    3 Posts
    956 Views
    hekH
    Doesn't seem to use the MySensors library.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Connenct a RS485 Network to a NodeMCU Gateway?

    6
    0 Votes
    6 Posts
    4k Views
    ThomasDrT
    @rejoe2 I'm assuming the Wifi is the best solution, but if RF868 would be better I'll look at it again. I also have a couple Xbee module Series 1, could you start something else? Perhaps also an idea add Xbee to the Mysensor API. regards ThomasD
  • Problem getting BMP180 to show correct readings.

    9
    0 Votes
    9 Posts
    4k Views
    gohanG
    @royson84 https://www.aliexpress.com/item/High-Accuracy-BME280-Digital-Sensor-Temperature-Humidity-Barometric-Pressure-Sensor-Module-GY-BME280-I2C-SPI-1/32672210336.html This is what I got. Keep in mind that bme280 tends to report temperatures 0.7/0.8C higher than actual, so make a comparison and add a temperature offset in code
  • 0 Votes
    12 Posts
    4k Views
    CravecodeC
    @NeverDie said in PIR Sensor false trigger every 10 minutes, same time node comes out of sleep.: IIRC, bypassing its LDO may help? I've actually already done that, to reduce power consumption. I'm running some tests now. It really looks like the 2.2.x version of the MySensors library helps. On my test piece, it has not had a false trigger in over an hour.
  • Secondary ESP8266 gateway

    12
    0 Votes
    12 Posts
    3k Views
    gohanG
    https://www.aliexpress.com/item/E01-ML01DP5-Ebyte-2-4GHz-20dBm-2100m-nRF24L01-SPI-Wireless-transceiver-module/32638720689.html
  • Metal in walls prevents radio communication. Alternatives?

    19
    0 Votes
    19 Posts
    4k Views
    Nca78N
    You could still try a PA LNA module with ipx antenna and bring antenna outside of the box, metal should be flexible enough to let the cable get out on one side. And no need to activate pa/lna mode so it can live longer on battery.
  • LinkSprite Lora Radio Shield support RFM95

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • HC-06 RS232

    1
    0 Votes
    1 Posts
    425 Views
    No one has replied
  • BME 280 how to use it?

    6
    1
    0 Votes
    6 Posts
    5k Views
    gohanG
    @wardur this is my stripped down code I use to read data from the BME280 Adafruit_BME280 bme; // I2C uint8_t BME280_i2caddr = 0x76; .. MyMessage msgHum(CHILD_ID_HUM, V_HUM); MyMessage msgTemp(CHILD_ID_TEMP, V_TEMP); MyMessage msgPress(CHILD_ID_BARO, V_PRESSURE); .. void setup() { Serial.begin(MY_BAUD_RATE); metric = getControllerConfig().isMetric; // was getConfig().isMetric; before MySensors v2.1.1 Wire.begin(); // Wire.begin(sda, scl) if (!bme.begin(BME280_i2caddr)) { Serial.println("Could not find a valid BME280 sensor, check wiring!"); while (1); } // weather monitoring Serial.println("-- Weather Station Scenario --"); Serial.println("forced mode, 1x temperature / 1x humidity / 1x pressure oversampling,"); Serial.println("filter off"); bme.setSampling(Adafruit_BME280::MODE_FORCED, Adafruit_BME280::SAMPLING_X1, // temperature Adafruit_BME280::SAMPLING_X1, // pressure Adafruit_BME280::SAMPLING_X1, // humidity Adafruit_BME280::FILTER_OFF, Adafruit_BME280::STANDBY_MS_1000); // suggested rate is 1/60Hz (1m) } void loop() { bme.takeForcedMeasurement(); float HUM = bme.readHumidity(); float TEMP = bme.readTemperature(); float BARO = bme.readPressure() / 100; send(msgHum.set(HUM, 2)); send(msgTemp.set(TEMP, 2)); send(msgPress.set(BARO, 1)); }
  • Whitelist not wirking from sensor to gateway

    26
    0 Votes
    26 Posts
    4k Views
    AnticimexA
    @karelsmits this is rather off topic. I suggest you move that question to a different thread as it has no relation to signing or security.
  • ESP8266 MQTT gateway radio problem

    9
    0 Votes
    9 Posts
    2k Views
    ferpandoF
    Thank you. I'll make some tests if I can find one

21

Online

11.7k

Users

11.2k

Topics

113.1k

Posts