Skip to content

General Discussion

A place to talk about whateeeever you want
1.5k Topics 14.2k Posts
  • Is the moisture sensor build doc accurate

    2
    1 Votes
    2 Posts
    391 Views
    mfalkviddM
    @mrhutchinsonmn you're right that the description and the sketch don't add up. They definitely need some work.
  • Hypothetical Project question

    15
    0 Votes
    15 Posts
    2k Views
    M
    This script will be more helpful for beginners. The previous script turns on/off all relays. This one controls only the specified relay. - id: '1562092064918' alias: Power Up Relay_2.1 trigger: - entity_id: switch.relay_4_2 from: 'off' platform: state to: 'on' condition: [] action: - alias: '' data: entity_id: switch.relay_2_1 service: switch.turn_on - id: '1562093186484' alias: Power Down Relay_2.1 trigger: - entity_id: switch.relay_4_2 from: 'on' platform: state to: 'off' condition: [] action: - data: entity_id: switch.relay_2_1 service: switch.turn_off
  • Raspberry Gateway

    6
    0 Votes
    6 Posts
    781 Views
    A
    @mfalkvidd Thank you, this should be the solution I'm locking for. Meanwhile I found the config-description...
  • ESP32 noob questions

    1
    0 Votes
    1 Posts
    379 Views
    No one has replied
  • Selling some parts

    2
    0 Votes
    2 Posts
    572 Views
    jamzmJ
    @royson84 Hiya. Depending on cost and shipping, I might be interested in your stuff.
  • Control Heatpump via Serial

    3
    0 Votes
    3 Posts
    576 Views
    sfozzS
    Hi, So as I see it I would need to use the hardware serial for the connection to the heatpump and then create a software serial for debug messages. So something like this: #include <SoftwareSerial.h> SoftwareSerial mySerial(10, 11); // RX, TX // Enable debug prints #define MY_DEBUG #define MY_DEBUGDEVICE mySerial #define MY_BAUD_RATE 9600 So the next question is how to present the heatpump to the gateway. Would you create one child id and then define each type of sensor/metric or is there a one-to-one mapping: #define CHILD_HVAC 0 MyMessage msgHvacStatu(CHILD_HVAC, V_STATUS); // Status: ON, OFF MyMessage msgHvacSTemp(CHILD_HVAC, V_TEMP); // Set Temp MyMessage msgHvacRTemp(CHILD_HVAC, V_TEMP); // Room Temp MyMessage msgHvacFanSp(CHILD_HVAC, V_HVAC_SPEED); // Fan Speed or #define CHILD_HVAC_STATUS 0 #define CHILD_HVAC_STEMP 1 #define CHILD_HVAC_RTEMP 2 #define CHILD_HVAC_FANSP 3 MyMessage msgHvacStatu(CHILD_HVAC_STATUS, V_STATUS); // Status: ON, OFF MyMessage msgHvacSTemp(CHILD_HVAC_STEMP, V_TEMP); // Set Temp MyMessage msgHvacRTemp(CHILD_HVAC_RTEMP, V_TEMP); // Room Temp MyMessage msgHvacFanSp(CHILD_HVAC_FANSP, V_HVAC_SPEED); // Fan Speed
  • Carbon Monoxide Sensor

    8
    0 Votes
    8 Posts
    2k Views
    epierreE
    MQ are always a bad choice, saturate air around with any gas and they will react ... Mics are used by sensely, but even them aren ot calibrated... and they are a hell to get working even when you have the pins soldered to them.
  • MY_RF24_IRQ_PIN on ESP8266 GW

    9
    0 Votes
    9 Posts
    986 Views
    Sergio RiusS
    @yveaux said in MY_RF24_IRQ_PIN on ESP8266 GW: True, and next it doesn't use it? ;-) This could be reformulated as an affirmative sentence. I cut the bridge wiring and continued working as nothing happened.
  • Watchdog 2019

    1
    0 Votes
    1 Posts
    327 Views
    No one has replied
  • V_ARMED Global for node or for each sensor?

    8
    0 Votes
    8 Posts
    793 Views
    alowhumA
    @skywatch My pleasure
  • void receive(const MyMessage &message)

    40
    0 Votes
    40 Posts
    3k Views
    skywatchS
    @mfalkvidd Today it did some real testing with the actual setup (not a test node) and it is all working really well so far. I was expecting to have to use limit switches to detect up and down limits, with microswitches to provide emergency power cut out to the motors if it overran. I even considered timing the motion too (done this with Crestron systems and curtains in the past). But I have had two really great surprises...... The little stepper motors, when set within their comfort zone, are very precise. It looks like just counting steps is all that is required. The steppers draw just 77mA when opening the blind. This is such good news for me as solar powered blinds (with li-ion or lead acid battery) will last all year! Big thanks to you all for the hints and finding where I mis-understood. It won't be easy, but I will get there in the end. ;)
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • MQTT - explanation for beginner

    3
    0 Votes
    3 Posts
    3k Views
    HomerH
    @pihome awesome, thanks heaps! I'll check it that video later today 👍
  • Measure temp inside hot water cylinder

    11
    1 Votes
    11 Posts
    2k Views
    A
    thanks all the design has changed I plan to heat some medium and have the water pass though a head exchanger what way standing water will never be consumed later there is a commercial product called sunamp which is designed for this purpose
  • Make your own fake li-ion 18650 !

    5
    0 Votes
    5 Posts
    948 Views
    LiamL
    Wow! It is interesting! I did not know that this is possible, thanks guys, I'll try in the evening :)
  • Using only two digital pins for a button? (no GND, no VCC)

    7
    0 Votes
    7 Posts
    872 Views
    alowhumA
    @zboblamont It's not very wasteful if you're not using them for anything else anyway. I'd rather use some extra code than extra hardware.
  • Enable RF24 Encryption with mysensors V2.x

    21
    1 Votes
    21 Posts
    7k Views
    S
    thanks @Anticimex
  • Problems with the neighbours

    11
    0 Votes
    11 Posts
    2k Views
    S
    @skywatch while i obviously agree with the fact that i we can best change channels, i figured that while we're at it we might as well add encryption too. I don't insist on using any specific channel. I couldn't care less what channel's being used :) That said, i tried recompiling my pi gateway wih the password and one sensor to start with using #define MY_ENCRYPTION_SIMPLE_PASSWD "mypassword" (shut off all other sensors). But i'm seeing all sorts of erroneous messages coming by, the one node is showing up on the gateway as a different ID every time. I'll whip up a simple serial gateway next time i get the chance and try to use #define MY_ENCRYPTION_SIMPLE_PASSWD "mypassword" on both to see if the problem lies with how i configure the pi gateway THanks for all the input everyone so far
  • Let's make it even bigger

    7
    5 Votes
    7 Posts
    2k Views
    franz-unixF
    I agree you have centered all the critical points: Ordering a pcb, all components and then soldering it is quite a barrier for "ordinary" people. Absolutely true! In fact my plan is to start a second Kickstarter campaign to sell some pre-assembled boards, if there are enough people interested and the feedback form the first campaign (not assembled pcb) is good. I have opened the d-diot website Friday, so the entire project is still a baby and I don't have a clear view of the next steps :grin: . In any case a final goal could be also a full finished product (case + board + Raspberry). For the ordinary user this will mean "plug in, take out your smartphone and play" What keeps you from having it open source and still sell assembled boards? In this moment only one "irrational fear" (please note the "" :wink: ).... loosing the possibility to keep the project sustainable and self-sufficient from an economical point of view (chinese clone, in other words). But I agree opening the hardware will improve and speed up the development and, at the end, the quality of the final product. The open source model works and this is a a fact (see Linux and Arduino). I think that a viable solution for me in this moment is to open at least the schematics; I'm evaluating this possibility from two days. 90% would buy a pre-made board from you. Yes I believe that too. Unfortunately the final price of a fully assembled board will be not so low, probably around 40-50€ (estimated), because today the assembly is not so cheap as the pcb manufacturing and the value of the components + radio modules is around 25€ (see here). So I prefer to keep also the DIY way open. Of course the price of a fully assembled board will drop with a massive production. Sorry for the long post but I think that there are great possibilities around the open source home automation, which is a good thing also for privacy and security, especially now in the cloud era, but, in my opinion, the problem is that the various projects (and there are many!) are fragmented and not integrated in a simple and plug&play solution for the normal user. In fact d-diot is born from this consideration. I have not talked about the other ideas / consideration to improve the experience of the others makers and that can generate some incomes to support the development, but for this post, I have already wasted enough bits with my bla bla bla, so I will proceed, if some other people are interested.
  • [SOLVED] V_VOLTAGE

    3
    0 Votes
    3 Posts
    524 Views
    skywatchS
    @zboblamont Thank you! - I didn't know if it was possible to send as a float or not. Now it is working as expected - :)

9

Online

11.8k

Users

11.2k

Topics

113.2k

Posts