Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. DenisJ
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by DenisJ

    • DenisJ

      GWT:TPC:CONNECTING
      Troubleshooting • • DenisJ  

      24
      0
      Votes
      24
      Posts
      110
      Views

      DenisJ

      @smilvert said in GWT:TPC:CONNECTING: A ticket is raised quite long time ago Thanks a lot... I put my case there also, maybe can help. That gui use same ESP32 DevKit V1 like me. Strange that I didn't fount that page in this 2 days of research. Thanks a lot Denis
    • DenisJ

      New simply node sensor project - please some advise
      Hardware • • DenisJ  

      6
      0
      Votes
      6
      Posts
      46
      Views

      DenisJ

      Oh boys... a lot of information here. Thanks so much... but I've already place the pcb order... I have make an order for 10 pieces. Bun in the mean time I'll experiment and modify the schema thanks to you all Anyway I have placed there this capacitor ... I hope will be ok for this time. Thanks so much for all information Denis
    • DenisJ

      Battery life calculator
      Hardware • • DenisJ  

      9
      0
      Votes
      9
      Posts
      46
      Views

      DenisJ

      @BearWithBeard said in Battery life calculator: you'd wake up every 30 seconds instead of once every 2 minutes. Whoawwww... I had entered wrong times Now I take 409 days... great !!! Thanks a lot again Denis
    • DenisJ

      What really sleep() do please ?
      Development • • DenisJ  

      5
      1
      Votes
      5
      Posts
      38
      Views

      DenisJ

      Ok great Thanks a lot again Denis
    • DenisJ

      What I must buy in order to measure mAh please
      Hardware • • DenisJ  

      12
      0
      Votes
      12
      Posts
      92
      Views

      DenisJ

      I already have something like this, but this one have no misurement in uAh Thanks a lot Denis
    • DenisJ

      Please give me an advice for a simple sensor node
      Hardware • • DenisJ  

      11
      0
      Votes
      11
      Posts
      51
      Views

      Yveaux

      @evb said in Please give me an advice for a simple sensor node: But the node will continue to work till 1.8V in a safe operating area. Yeah sure, but alkaline batteries are nearly depleted when they get to 1V, so barely worth the hassle.
    • DenisJ

      Personalize the MQTT topics
      Development • • DenisJ  

      7
      0
      Votes
      7
      Posts
      55
      Views

      DenisJ

      Practically I receive the MQTT topics from the MySensors Gateway. Then in Node-Red I have make a function that translate the MySensors MQTT topics in a personalized MQTT topics, in order to have clear names of the sensors value. In Node-Red you make a flow like this: Then in the function node you make something like this... but personalized: // add timestamp to every sensor reads var dt = new Date(); var hh = dt.getHours(); var mm = dt.getMinutes(); var ss = dt.getSeconds(); var yy = dt.getFullYear(); var mo = dt.getMonth() + 1; // want 1 more var dd = dt.getDate(); //var daynum = date.getDay(); timeST = (dd < 10 ? "0" : "") + dd + "-" + (mo < 10 ? "0" : "") + mo + "-" + yy + " " + (hh < 10 ? "0" : "") + hh + ":" + (mm < 10 ? "0" : "") + mm + ":" + (ss < 10 ? "0" : "") + ss; /* sensors ID id SensGaraj: 11 id SensCame1: id SensCame2: id SensCame3: id SensCucin: id SensSerra: 12 id SensFuori: id SensSalon: type Temp : 51 type Hum : 52 type Press : 53 type BatVol: 54 type BatLev: 255 */ ret = 0; // send the return or not // sensor id (topic:MySensors-out/xx/) var parts = msg.topic.split("/"); id = parts[1]; type = parts[2]; val = msg.payload; if (id == 11 ){sname = "SensGaraj";ret = 1;} if (id == 12 ){sname = "SensSerra";ret = 1;} // if etc... if (ret == 1){ if (type == 51 ){stype = "Temp"; } if (type == 52 ){stype = "Hum";} if (type == 53 ){stype = "Press";} if (type == 54 ){stype = "BattVol";} if (type == 255){stype = "BattLev";} msg = {}; //initialize msg object msg.measurement = "sensors"; // tabella/file > influxdb msg.topic = "MySensors/" + sname + "/" + stype; msg.payload = {value: val, timeST: timeST} node.status({fill:"green",shape:"ring",text:sname}); return msg; } ////////////////////////////////////////////////////////////// If you need more help just let me know Denis
    • DenisJ

      SP32 GW and RFM69HCW radio pinout
      Troubleshooting • rfm69hcw • • DenisJ  

      3
      0
      Votes
      3
      Posts
      25
      Views

      DenisJ

      It's work Thanks a lot
    • DenisJ

      Read the Digoo DG-R8H temp/humidity sensor
      Hardware • • DenisJ  

      6
      0
      Votes
      6
      Posts
      40
      Views

      barrymoules

      @DenisJ yes I will take them , please send me your email so we can arrange this
    • DenisJ

      Sonoff Bridge 433mHz+ Digoo sensor witch firmware
      Hardware • • DenisJ  

      3
      0
      Votes
      3
      Posts
      28
      Views

      DenisJ

      Great think this OpenMQTTGateway ) I'll post there. Thanks a lot Denis