Skip to content

General Discussion

A place to talk about whateeeever you want
1.5k Topics 14.2k Posts
  • 18V => 5V Step-Down

    5
    0 Votes
    5 Posts
    3k Views
    dakkyD
    Thanks 4 all the input! I thought about measuring only, but powering the node is a possibility i nearly ignores. Stupid me ☺ This intercom has a regulated 18v DC power source. So i should be fine.
  • Feasibility of my IR blaster project idea

    10
    0 Votes
    10 Posts
    3k Views
    mfalkviddM
    @riataman has a solution here that might be useful.
  • Lowpower lib

    2
    0 Votes
    2 Posts
    784 Views
    mfalkviddM
    I don't think Arduino has a standard sleep function. Which function do you mean? The MySensors sleep function does several things, including powering down the radio (if a radion is used). It is quite power efficient.
  • Relay controlling speakers in multiroom music system?

    4
    0 Votes
    4 Posts
    1k Views
    sundberg84S
    THanks for the replies... nah, i suspected it wasnt the best choise since all I could find on www wasn pretty much on raspberry client / speaker.
  • Will itead FTDI programmer work with sensebender micro?

    2
    0 Votes
    2 Posts
    1k Views
    mfalkviddM
    Yes it will work. You can also buy from ebay or Aliexpress. links are available here if you scroll down a little bit.
  • MySensors 1.5.1?

    3
    0 Votes
    3 Posts
    892 Views
    tbowmoT
    @gandy-bruno I think that the next release will be 2.0.0.. (Or that is what we are aiming for at the moment)
  • How can I verfiy signing/encryption?

    4
    0 Votes
    4 Posts
    2k Views
    dakkyD
    :+1: signing seems to be fine ;) thanks 4 info
  • Riots

    18
    0 Votes
    18 Posts
    6k Views
    HeinzH
    The greatest thing about mysensors is, that it can be combined with almost any home-automation controller. That was the reason for me to have a closer look at it. I will be able to reuse my whole sensor network when I will exchange my controller in future. Riot would be interesting for me if the hardware is cheap and if there would be a nice housing for the babies, and ofcourse if it would be compatible to mysensors.
  • repeater node with sensor

    12
    0 Votes
    12 Posts
    7k Views
    H
    ... and to give the DHT sensor a chance on reading errors to retry and not to wait until next cycle which might be very long: for (unsigned int i = 0; i < DHT_MAX_TRIES; i ++) { float temperature = dht.getTemperature(); if (isnan(temperature)) { Serial.println("Failed reading temperature from DHT"); gw.wait(dht.getMinimumSamplingPeriod()); } else if (temperature != lastTemp) { lastTemp = temperature; if (!metric) { temperature = dht.toFahrenheit(temperature); } gw.send(msgTemp.set(temperature, 1)); Serial.print("T: "); Serial.println(temperature); break; } } Repeat the same for humidity of cause.
  • New house - help me getting started!

    12
    0 Votes
    12 Posts
    5k Views
    E
    Hi, I'm in the same situation as you, designing future house electric system. Routing all the wires to the main cabinet (fuse box) is overkill since you can not wire a two position switch (in the room) and automation (at the panel) in such a way that they can work together, you either wire them in parallel and then the automation can not turn the light off if the room switch is on, or in series in which case the switch can not turn on the light if the automation failed. The only way to use it would be by using Push-Button like switches (doorbell switches) in parallel with the automation, commanding some type of step relays, but in that case the price is way high for wires and relays. My approach is to take both light leads to a larger light switch box in the room, plus some 12V rails, there I have some 12v-5v dc-dc reg, Arduino, relay board, pushbuttons and confirmation leds, plus radio. The system's top priority it turning lights on/off, I'm also considering adding another Arduino in ther for the radio communication, just to be sure the main Arduino does not crash and leave me in the dark. As relays for lights I use the aliexpress cheap relay boards with Songle 220V 10A rated relays, my CFL and LED lights take 200W max, which is under 1A, so the relays should last a long time. I've chosen the 12V low power buss for the cheap and reliable 12v-5V DC-DC step converters. You may go with 24V if you find the right voltage converters for a good price. For the sensors I leave the cable tubing out of the wall a few inches, and after painting I cut to the surface level and glue (silicone) a small box that sticks out with holes on top and bottom for better airflow. Heck I even have some dead end cable tubes in the walls for some DS18b20 in wall temperature probes, useful on exterior walls to prevent dew knowing the inside temperature and humidity. PS. Add some tube to the radiators if you use such things for heating, might be useful for monitoring in/out temps, and correlated to some electric motor ball valves you can have heating zones in your system. Regards, Mircea.
  • Mark Zuckerberg joins MySensors soon?

    5
    1 Votes
    5 Posts
    2k Views
    barduinoB
    probably not :smirk:
  • How to see the sensors registered on gateway

    3
    0 Votes
    3 Posts
    1k Views
    M
    hi @Sparkman I use Openhab. But "presentation" function is used for what ? Is it just for the gateway sends the correct type ID ?
  • Wifi gateway is it working?

    6
    0 Votes
    6 Posts
    2k Views
    hekH
    Try adding a cap on between GND/VCC to stabilise the power supply.
  • MySensors network static or dinamic?

    5
    0 Votes
    5 Posts
    2k Views
    M
    Ok, thank you.
  • Not Too Techy windows controller

    1
    0 Votes
    1 Posts
    660 Views
    No one has replied
  • Eeprom usage

    7
    0 Votes
    7 Posts
    6k Views
    bisschopsrB
    Hi All, Resolved this with a simple funtion splitting the value in byte long parts. Bit shifting and OR are a perfect fit for this :-). The code: void storeEeprom(int pos, int value) { // function for saving the values to the internal EEPROM // value = the value to be stored (as int) // pos = the first byte position to store the value in // only two bytes can be stored with this function (max 32.767) gw.saveState(pos, ((unsigned int)value >> 8 )); pos++; gw.saveState(pos, (value & 0xff)); } int readEeprom(int pos) { // function for reading the values from the internal EEPROM // pos = the first byte position to read the value from int hiByte; int loByte; hiByte = gw.loadState(pos) << 8; pos++; loByte = gw.loadState(pos); return (hiByte | loByte); }
  • Serial Gateway

    9
    0 Votes
    9 Posts
    3k Views
    tbowmoT
    @skatun As I said, there are not that much documentation on running without radio :) If I remember right, you could take the basic DHT11 example, remove radio stuff, and add a MY_SERIAL_GATEWAY define (look in the code to see the right names of the defines). However, one thing regarding your setup, what is the distance from the arduino mega, to your DHT11 sensors? I don't think they are meant to be used with long cable runs. Also the LED strips, are they PWM controlled? How about RF noise emiting from those wire runs? You could probably use rs485 as protocol for mysensors (does require arduino at each node).
  • Gateway as Node?

    2
    0 Votes
    2 Posts
    800 Views
    Michel - ItM
    http://forum.mysensors.org/search/Ethernet Gateway?in=titlesposts
  • Updating to 1.5 and question about RFM69HW

    7
    0 Votes
    7 Posts
    3k Views
    FrancoisF
    @riteshpatel I upgrade to version 1.6 beta as this have an must better integration with the RFM69 radios. Now you only have to configure your device in the MyConfig.h file. Also if you look at the sketch you will see you only have to #define MY_REPEATER_FEATURE to have the repeater. // Enable debug prints to serial monitor #define MY_DEBUG // Enable and select radio type attached /m#define MY_RADIO_NRF24 #define MY_RADIO_RFM69 // Enable repeater functionality for this node #define MY_REPEATER_FEATURE
  • OTA sending updates ?

    2
    1 Votes
    2 Posts
    2k Views
    mfalkviddM
    I understand that this answer is a bit late, but for future reference if someone finds this thread, I think the best answer is at http://forum.mysensors.org/topic/838/windows-gui-controller-for-mysensors/73

8

Online

11.7k

Users

11.2k

Topics

113.0k

Posts