Skip to content

My Project

Show off and share your great projects here! We love pictures!
961 Topics 13.4k Posts
  • Making a dual radio repeater

    8
    1 Votes
    8 Posts
    3k Views
    sundberg84S
    The RFLink (433mhz) has a great PCB (for Mega though) that has both Nrf24+ slot and 433 transiever slot - but at this moment the only thing implemented is the 433mhz function - so its a bit of work.
  • [n00b]]Ethernet GW - without NF24

    31
    0 Votes
    31 Posts
    15k Views
    zaphodusZ
    I had the same problem as you and I have found a possible solution. The arduino has default auto reset on serial connection. So when you connect gateway to controller trough USB, the gateway is rebooting immediately and processing presentation(). In case of wireless gateway (esp8266) this does not happen. The presentation() runs only on startup of the gateway. I made little change in MyGatewayTransportEthernet.cpp and now the gateway processes presentation() when the controller is connecting to it. You can find here my solution: https://github.com/zaphodus/Arduino/commit/ce93db73513f1da45637b186787c9b2501e5d882
  • IR remote using ESP8266 to power down AV devices

    1
    6 Votes
    1 Posts
    3k Views
    No one has replied
  • Hydroponics (Update 1/31) w/pics

    16
    0 Votes
    16 Posts
    9k Views
    DwaltD
    @barduino I stumbled across this project a year or so ago while researching something similar to your project. There are some good resources there. I never got around to following up on it but your project is tempting me...mixing water with electronics, what's not to love.
  • Adafruit CC33000 WifiGateway

    10
    0 Votes
    10 Posts
    3k Views
    C
    @barduino i made a pull request for the development branch but they want me to change a couple more things before they merge it. I just havent got around to it yet. Ive never messed with the mqtt gateway nor do i really even know what it is but let me know if i can help you out
  • Yet another mailbox

    10
    6 Votes
    10 Posts
    5k Views
    m26872M
    @mbj Thx, I wont draw any scientific conclusions from your figures either. I was just curious. As you said there're always discussion about accuracy and working ranges etc.
  • Sensor shield for Arduino Pro Mini 3.3V with boost up regulator

    39
    1 Votes
    39 Posts
    27k Views
    P
    Long time no see... I had time to work on my sensors lately and here are some pictures of my humidity sensor which is running here for three months now: [image: 1454090345509-img_00061.jpg] [image: 1454090408434-img_00041.jpg] [image: 1454090608793-img_00031.jpg] I left out the power regulator shown above and also desoldered the LED and voltage regulator of the Arduino to safe power. The sensor is directly powered by 3.7V of the lithium battery. The voltage is measured and the battery will be recharged when it goes down. Since I also built a 3D printer lately, I was able to put the sensor into a little box. Now I can easily measure humidity and temperature in my bath room and see it in fhem on a raspberry. Currently I'm working on my next pcb... I will show the next one when I'm finished in a new thread.
  • [example] GPS Sensor

    gps example
    18
    8 Votes
    18 Posts
    14k Views
    Pierre PP
    @drock1985 said: Hey @Pierre-P Yeah, you would need a new gateway for each radio type. I found a new mysensors page ! here: https://www.mysensors.org/download/sensor_api_15#create-repeating-nodes Advanced initialization It's also possible to construct an instance with RFM69 radio driver and/or enable signing support. You can choose one of the following radio drivers: MyTransportNRF24 transport(RF24_CE_PIN, RF24_CS_PIN, RF24_PA_LEVEL_GW); or MyTransportRFM69 transport(RFM69_FREQUENCY, RFM69_NETWORKID, RF69_SPI_CS, RF69_IRQ_PIN, isRFM69HW, RF69_IRQ_NUM);
  • My ESP8266 Gateway and nodes.

    15
    4 Votes
    15 Posts
    6k Views
    mfalkviddM
    With the voltage regulator removed the Arduino can no longer be powered on the raw pin. You need to supply it with maximum 3.3V on Vcc. 2xAA usually works well.
  • I need a dual communication example...

    3
    0 Votes
    3 Posts
    1k Views
    M
    My sketches just do this, they are waiting for commands and they sends updates to the gateway periodically: http://forum.mysensors.org/topic/2747/home-automation-multi-sensor-nodes You may modify them to update the relays status or not.
  • 2 channel relais with 2 buttons sending strange values for on:off

    18
    0 Votes
    18 Posts
    8k Views
    N
    Sweet! Thanks for the feedback @Anduril .
  • OpenHAB + Arduino Uno Gateway + ENC28J60 + MQTT

    5
    0 Votes
    5 Posts
    4k Views
    AstrofotografA
    @ahmedadelhosni Yep, ordered one yesterday. Hope it won't take weeks again.
  • Ethernet Gateways and Temperature Sensor combo

    3
    0 Votes
    3 Posts
    2k Views
    F
    Hi @sundberg84 Many thanks for your reply.. I have not update to 1.6 yet, but will surly try this this weekend. Will come back if I have questions.. Very existed to get this past a testing/play stage. :satisfied: Chris
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    14 Views
    No one has replied
  • Gateway an Node. Problems with the Installation

    9
    0 Votes
    9 Posts
    2k Views
    mfalkviddM
    The sensor should repeat "find parent" until it gets a response. So there seems to be a problem with the sensor anyway. Has the Arduino been used for something else before? Sometimes clearing the eeprom helps. http://www.mysensors.org/build/debug#clearing-eeprom The radio channel can be changed in MyConfig.h https://github.com/mysensors/Arduino/blob/development/libraries/MySensors/MyConfig.h#L314 but it shouldn't be a problem unless your wifi is extremely busy.
  • Graphing via RPi to website

    5
    0 Votes
    5 Posts
    3k Views
    M
    I'm using a different approach using Google Charts, as outlined here. I run Domoticz on a RPi, and I've written a Python script to get values from Domoticz using JSON calls every 10 minutes, and write these to a .csv file, creating a new file each day. I then run a modified version of @stephenmhall's Python script, which creates an html file and calls Google Charts. One advantage of this approach is that you display the webpage in a local browser.
  • Another beginner project

    20
    0 Votes
    20 Posts
    9k Views
    AstrofotografA
    Hm, I installed OpenHAB now on my RasPi, also Mosquitto. I think I begin to understand this. So MQTT is just some kind of "forum", and when in the thread "livingroom/temperature" something changes, OpenHAB recognizes it. The sensor sends just its data to the gateway and the gateway writes the MQTT thread? Will the other way round work too, so OpenHAB writes data into a specific thread, the gateway recognizes it and sends a command so, say a servo node to move something? If that all is correct, I sould be able to connect the 433 MHz things just like a normal sensor node. The receiver acts as a normal sensor and the sender could use the servo sketch to send some commands via 433 MHz band?
  • Where next with making prototype more permanent?

    4
    0 Votes
    4 Posts
    2k Views
    HenryWhiteH
    @stubtoe said: I saw that the other day. It is pretty neat and given me a few ideas. I suppose I was also asking (although not very well worded!) where's a good resource when you want to design and manufacture your own bespoke PCB? Is there a good book anyone can recommend? For Designing a PCB, you can watch tutorials on YouTube (search e.g. for "eagle tutorial" if you want to design your board with eagle. I started two weeks ago and after one day of watching tutorials I built my own board in eagle ;) A good address for cheap pcb manufacturers is http://pcbshopper.com/
  • My first project, KAKU RF reciever/transmitter

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Weather station

    5
    0 Votes
    5 Posts
    3k Views
    A
    Hi Awi, thanks for your answer! As you can see on my previous photos I have already connected the reed switch to my arduino on pin 9 and gnd after that I have typed pinMode (REED, INPUT_PULLUP); on my skecth. Following one of the project i have found which says flipping the bucket a couple of times, I should see the counter in my serial monitor click-up, if not check the wiring. Therefore after following these instructions I can see no signs at all. I was wondering if my conexion to the reed switch is done correctly or it may be affected to my windows (Im working with windows 10) I see a clicking in my arduino board after uploading the sketch but I see nothing when flipping the bucket in order to track the movement of the tipping bucket.

19

Online

11.7k

Users

11.2k

Topics

113.1k

Posts