Skip to content

My Project

Show off and share your great projects here! We love pictures!
961 Topics 13.4k Posts
  • BLDC controller by LaserSolid 690

    1
    1 Votes
    1 Posts
    348 Views
    No one has replied
  • Lamp

    1
    5
    3 Votes
    1 Posts
    319 Views
    No one has replied
  • d-diot Gas sensors and RGB lamp

    1
    1
    1 Votes
    1 Posts
    312 Views
    No one has replied
  • Irrigation Controller (up to 16 valves with Shift Registers)

    371
    4 Votes
    371 Posts
    249k Views
    E
    @dbemowsk Thank you!
  • Water Pressure Sensor

    1
    0 Votes
    1 Posts
    509 Views
    No one has replied
  • d-diot: dual MySensors gateway for Raspberry... And more!

    14
    3 Votes
    14 Posts
    3k Views
    franz-unixF
    @tbowmo Thank you for your effort! Now my turn... the whole schematics of the d-diot board is available for download here! :wink: Of course I have to learn more and do some testing before implementing in the d-diot board the constant current source circuit that you suggested, but this a great option to eliminate the MP1584 (that one day may become unavailable on the market) and to lowering the cost. For the same reasons my plan is to substitute the step up module MT3608 with a boost converter circuit, made from standard passive components (like this). In any case, if someone else needs to make an universal IR remote with a Raspberry Pi, the configuration of the GPIO pins of the Raspberry is here, while the steps necessary to configure LIRC and lirc_web are here. The final results is this: [image: 1559765591483-screen1-resized.png] [image: 1559765616342-screen2-resized.png] Here the guides to play with the IR gateway (add a remote, clone a remote, Home Assistant integration)
  • RF433 Hub for controlling Watts Clever switches

    5
    2
    2 Votes
    5 Posts
    728 Views
    franz-unixF
    @homer Glad that it helped! But make sure that RFLink supports your Watts Clever smart plug. If you already have an Arduino Mega and an RXB6 receiver at home is quite easy and fast to verify that. Another interesting option is that you can couple the Arduino Mega with an ESP8266 and then expose the serial output over Wifi with ser2net (see here) in the ESPEasy firmware. This other project goes further and use an ESP8266 to write the serial output of the RFLink to an MQTT server. Both solutions add flexibility to the positioning of the RFLink module in your home.
  • Candle Manager - user-friendly web-based tool to program Arduino's

    5
    5
    3 Votes
    5 Posts
    1k Views
    alowhumA
    @homer This is how I do it: First download the latest Mozilla WebThings Gateway image and burn that onto an SD card. Their guide will explain how to 'burn' it onto an SD card. Insert it into the pi and boot it up. After a while you will see a new WiFi network for the gateway. Connect to it and follow the steps. You can skip the step to make a subdomain at Mozilla. Once done, open gateway.local in a browser that's on the same wifi network. You should now see the Mozilla Gateway interface. Under settings -> development enable SSH. Open a terminal window and SSH into the device. Google how to do that. For linux/mac it's something like: ssh pi@gateway.local and then enter the default password raspberry. once logged in, you have to install PHP. sudo apt-get install php5-fpm php5 -y Next, copy the Candle Manager from Github onto the Pi. git clone https://github.com/createcandle/Candle-manager.git chmod +x ./Candle-manager/start.sh ./Candle-manager/start.sh Now you should be able to go to gateway.local:8023 to see the Candle Manager. By default it comes with only one demo sketch. In the future you will be able to install a lot more. Arduino Sketches have to be properly formatted and placed in the 'sources' folder to be automatically presented in the Candle Manager interface. Examples of such sketches can be found here. Basically, the variables that you want to be modifiable via the interface have to be placed in a special section. The description at the top of the sketch will also be shown in the interface. For example: /* * * Temperature and more sensor * * This device can measure: * - temperature * - humidity * - airpressure (barometer). * * * * SETTINGS */ // You can enable and disable the settings below by adding or removing double slashes ( // ) in front of a line. #define HAS_DISPLAY // Did you connect a display? //#define FAHRENHEIT // Do you want temperature measurements to be in Fahrenheit? //#define MY_SECURITY_SIMPLE_PASSWD "changeme" // Be aware, the length of the password has an effect on memory use. /* END OF SETTINGS * * * */ // The actual sketch and other variables are placed here.
  • DHT and DOOR sensor

    20
    0 Votes
    20 Posts
    2k Views
    HomerH
    How much power are you feeding the sensor? I've had issues when I've fed too little power and it's resolved once I use more power.
  • Shunt motor/valve

    1
    1
    2 Votes
    1 Posts
    399 Views
    No one has replied
  • Dooya DC1802 sniffing and repeat

    2
    2
    0 Votes
    2 Posts
    713 Views
    HomerH
    @peter-gonczy I'm only a noob, but is that the whole sketch? Doesn't it need to be setup so it talks to the gateway?
  • Constant current high voltage dimmable led driver

    1
    1 Votes
    1 Posts
    456 Views
    No one has replied
  • Start neopixels when présentation fails

    4
    0 Votes
    4 Posts
    641 Views
    T
    Thanks. Everything is ok. I now have a node with 3 push-buttons for 3 colors settings and vocals commands for lazy persons or Tony stark. It's for a Iron Man reactor with neopixels... I wanted to Say : "Jarvis.. Iron Man laser" to have flash effects with neopixels. For this i use mysensors + jeedom + Google Home mini + ifft. Need to had Wait(200) in my loop to be sure to receive message from gateway. Thanks again
  • Mysensorized Roomba

    18
    4 Votes
    18 Posts
    7k Views
    B
    there is plenty of space for a nano or pro mini. wemos mini or nodemcu should also fit (spam links removed by moderator)
  • MySensors-powered arcade game screen with wireless gamepad controller

    esp8266
    10
    12 Votes
    10 Posts
    7k Views
    alowhumA
    WOW!!! What a cool project!
  • Interupt not waking sensor

    10
    0 Votes
    10 Posts
    983 Views
    scalzS
    @terence-faul said in Interupt not waking sensor: when the Interupt is called does that invoke the loop from the beginning?``` No, it resumes. But in your case, as sleep is your last function in Loop(), loop is relaunched. I just quick looked at your code (no time). Have you tried to remove others sensors code, and run a reedswitch only code. It should be the first step in your debugging. Better do step by step to check what's the culprit. If your reedswitch code is working ok, if there is any interference with other sensors/libraries, the logic order/algo etc. Are you using sleep() for saving energy (so a batt powered device)?? then imho I would have choosen a better sensor. I don't get why people still uses these dht.. Eg. cheap si7021, Bosch BMEs : better power consumption, voltage range. DHT libs has lot of delays, yuk! eg. minimum 10ms just for a read start signal (more for the complete reading), imho it needs refactoring to be used in non blocking way. So, you can: disable your DHT code and try reedswitch code only. if it works. then you have a problem with 1) your code logics 2) external lib (but imho it's a bad sensor choice) Check 1) by maybe changing a bit your code logics(order of functions calls like testing your reedswith right after your sleep call). if it doesn't fix, rewrite sensor lib in non blocking way to be used with your sketch if you don't feel enough good for rewriting lib, then change sensor brand/model, and you may fix this problem ;) As a rule of thumb, libs are not all well optimized even if their examples works, but sometimes it needs tinkering so it can work in larger projects like a mysensors multisensors sketch. So before using a lib, I often check&fix if there are any delays/loops/blocking stuff and others details which could bring some problems and slow down my dev. Edit: ahah I didn't notice, you beat me @mfalkvidd :)
  • My SHT21 and ds18b20 sensor

    sht21 ds18b20
    7
    4 Votes
    7 Posts
    5k Views
    S
    Looks great! Would love to see the schematic and 3D print file for the enclosure. @Blom Would you be able to share them?
  • Ethernet gateway

    2
    0 Votes
    2 Posts
    806 Views
    HomerH
    @terence-faul I'm only new to this myself, so I can't help with anything specific, but I did a search and found another thread where someone was having issues with a similar setup to you. Maybe you might find some info there that helps you. The thread is here : https://forum.mysensors.org/topic/5059/ethernet-gateway-with-w5100
  • This topic is deleted!

    1
    2
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Wirsbo/Uponor thermostat replacement

    hardware thermostat development
    11
    5 Votes
    11 Posts
    13k Views
    D
    @bjornhallberg The sensors are working fine and have been installed in my home for the last couple of years. Some optimisation needs to be done to the code, that i have not done. This is more connected to understanding when the mysensors network is in "range" as i want to fallback on the manual knob if the mysensor network is inactive for some reason or if i sell the house and the controller goes with me.

32

Online

11.7k

Users

11.2k

Topics

113.1k

Posts