Skip to content

General Discussion

A place to talk about whateeeever you want
1.5k Topics 14.2k Posts
  • Geophone - sensing earthquakes and other seismic vibrations

    2
    0 Votes
    2 Posts
    1k Views
    NeverDieN
    @alowhum I've heard of geophones being used to detect footsteps outdoors. Cost was around $60/sensor IIRC. http://www.kr4.us/Geophone-SM-24.html?gclid=CjwKCAiAoNTUBRBUEiwAWje2lqjbwf7gdzmiPalzIry4JBhZ-L-kqX6qqSt4UV0atkOPNGlab9Q5ZxoC_H8QAvD_BwE
  • Security: 433 RFX vs Mysensors security

    15
    0 Votes
    15 Posts
    2k Views
    C
    @nca78 said in Security: 433 RFX vs Mysensors security: @chbla said in Security: 433 RFX vs Mysensors security: @nca78 I'm still deciding what to use. Pro Mini if I don't find anything better. I'm interested in where you buy your BME680 breakout boards, there are not so many around :) I think I bought them here: http://www.watterott.com/de/BME680-Breakout I'm located in Austria
  • Send Images over MySensors and Arducam possible?

    2
    0 Votes
    2 Posts
    890 Views
    mfalkviddM
    @cablesky it seems to be possible according to https://forum.mysensors.org/topic/1668/sending-image-data-over-the-mysensors-network/
  • ARDUINO+WIFI -> Domoticz on Raspberry Pi3 (water meter)

    5
    0 Votes
    5 Posts
    2k Views
    gohanG
    Mysensors has a "savestate" function that can be used to save variables in eeprom without too much hassle, but in your case it since it is a mains powered node you could just report every pulse and have the controller save the data and when node boots it will just asks Domoticz the last pulse count (look at energy pulse meter example in library) but I think that will work only if using mqtt gateway as for the ethernet it will just miss the retrival of the pulse count because the controller takes some time to connect to the ethernet GW. As an alternative there are other solutions like ESPEasy that have already some built in funtions easy to use without need to do lot of coding.
  • Strange Error when pigw failed

    5
    0 Votes
    5 Posts
    896 Views
    gohanG
    You could give a try without reflashing nodes , just save the current binary :)
  • Logo

    10
    0 Votes
    10 Posts
    2k Views
    dbemowskD
    First attempt playing with the logo. I did a manual filament change from yellow to blue. Didn't have any black PLA, only ABS, otherwise I would have used black. This is more of a lithophane style which didn't do the best, but is still okay. I want to try to figure this out using paths in inkscape and exporting them to OpenSCAD. Having some trouble with that though. I'll figure it out in time. The picture is next to a soda can so you can get an idea of the size. [image: 1518854622252-a241d8c1-cfe2-48f9-89c3-50dbe1c7d346-image.png]
  • BananaPi M1 gateway wont work

    2
    0 Votes
    2 Posts
    764 Views
    X
    @kebibg hello Was you able to bring it to work? Thanks, Simon
  • Conflicts with neighbour's gateways ?

    multiple gateway
    8
    0 Votes
    8 Posts
    2k Views
    hekH
    @ricorico94 From the NRF24 datasheet: [image: 1518649573838-screen-shot-2018-02-15-at-00.05.12-resized.png] https://www.sparkfun.com/datasheets/Components/SMD/nRF24L01Pluss_Preliminary_Product_Specification_v1_0.pdf So, you should probably choose address a bit careful. To change base address just add a define in your sketch like this (before including MySensors.h): #define MY_RF24_BASE_RADIO_ID 0x00,0xFC,0xE1,0xA8,0xA8
  • Watchdog to notify when sensor offline using Node Red

    3
    0 Votes
    3 Posts
    4k Views
    D
    Very simple solution, but I just put up a single flow (called watchdog of course) that subscribes to "hart beat" and value topics of items I am watching (in my case via openhab, but principle is the same for vanilla mqtt) and then have a "timeout node" for each item. Timeout node triggers if no message comes in in a predefined period (per item, some send data every few minutes, some every few hours) But each arduino node has defined hart-beat interval In my case all timeouts go to a function that formats a message in format "<itemname> not seen in <timeframe>" and that is logged and sent to an email once a day. But you can as well put it into a dashboard as Yveaux showed. I also like use of subflows whenever possible, but in my case all is happening on one flow and in two nodes, one that connects to mqtt hearbeat and one node that triggers if no data comes in (sorry I forgot the name, but it is a default node-red node)
  • I can't download mysensors sketch with a raspberry pi3

    2
    0 Votes
    2 Posts
    837 Views
    M
    I havent' seen but some one had the same probleme on the forum, and found the solution: [link text] https://forum.mysensors.org/topic/6096/problem-with-mysensor-library-on-arduino-ide-running-on-raspi/8 now i can download my sketch with the raspberry pi and i'm very hapy!
  • How to force MySensors to start setup and loop before connect to Gateway?

    3
    1 Votes
    3 Posts
    1k Views
    G
    It works, thank you ;-)
  • You Have I Need

    8
    0 Votes
    8 Posts
    1k Views
    sundberg84S
    @flopp electrokit is in Malmö and should be open today. Order pickup and you will have the parts later today.
  • Mulitple Gatways and NodeID0

    10
    0 Votes
    10 Posts
    2k Views
    rejoe2R
    @mfalkvidd Thx for the "quick and dirty" way. This at least is a starting point, but most things around that seem really to be hard coded (MySensorsCore.h: L77: GW Address is 0 is the point where the getNodeId() finally leads to). But if that really works there might be a way to wrap around that - but indeed this seems to be quite complicated. And indeed, you are right that having multiple nRF-GW's was possible ever since MySensors existed.
  • MQTT vs Serial Gateway

    2
    1 Votes
    2 Posts
    1k Views
    gohanG
    GW to node communication is not affected by Serial / MQTT / Ethernet interface with controller. With ethernet and MQTT you could actually connect more controllers to the same gateway, even on different computers. You can also have gateway running as a service on the RPI with radio directly on the GPIO and you can connect to is from wherever you have IP communication to the RPI (if you use the ethernet) or the MQTT broker (that could also be on another network)
  • Project submission question

    4
    0 Votes
    4 Posts
    833 Views
    stevemS
    @hek Thanks; maybe I'll try the inclinometer project.
  • Raspberry Pi3 Gateway

    16
    0 Votes
    16 Posts
    4k Views
    rajeev2301R
    @mfalkvidd Thanks for your valuable input. I think I got some direction to move on.
  • Door/Temp/PIR: MySensors or mix with cheap 433Mhz sensors - Opinions?

    8
    0 Votes
    8 Posts
    2k Views
    gohanG
    Sure it can be done, the only problem is the amount of flash of the pro mini that is limiting the amount sensors you can have when you have all securities enabled
  • 0 Votes
    8 Posts
    4k Views
    RajendraR
    Ive designed a NRF based mysensor remote with 14 keys, I want to use pin 2 for one of the key. Currently all pin work properly for key but pin 2 does not recognise instead it creates some disturbance in transmission. what i receive on destination node is unexpected. Is it possible to disable use of pin 2 . it looks like mysenso uses pin 2 for some internal use.
  • Recovering

    7
    0 Votes
    7 Posts
    1k Views
    dbemowskD
    @gohan It's not like the drive stayed full for long. I usually ran with between 20GB and 40GB of free space.
  • Best hardware for gateway with encryption and signing

    8
    0 Votes
    8 Posts
    2k Views
    AnticimexA
    @8667 That is inherently hard to state firmly due to so many variables. How much debug do you want, what libraries do you want to include, what software version do you plan to use, and so on.

12

Online

11.8k

Users

11.2k

Topics

113.2k

Posts