Git Product home page Git Product logo

precipitationsensoresp32's Introduction

precipitationSensorESP32

Radar based precipitation sensor using a 24 GHz radar sensor modul (IPM-170, RSM-1700, IPM-165 or CDM324) with a 57.6 dB low noise preamp and an ESP32 for signal processing and data transfer to a FHEM server.

Schematics and discussion can be found in the FHEM forum under the following link: https://forum.fhem.de/index.php/topic,73016.0.html

precipitationsensoresp32's People

Contributors

chunter1 avatar hcs-svn avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

alkovlad

precipitationsensoresp32's Issues

PCB-layout on Github

I suggest to host the PCB-layout on Github, too. This will allow much more users to participate than the FHEM forum. If EAGLE is used for layout the Cadlab.io Github app can be used to publish the layout and render diffs.

Shall it provide a serial interface?

To be able to use it without WiFi

Other than for LGW it perhaps does not make sense here because usually there will be no server to plug it into that is outside where it rains :-)

Perhaps only for "factory reset" and so on, when the settings are junk.

Sensor mounting angle

To allow evaluation of different sensor mounting angles, it would be great if we could add an "sensor mounting angle" field to the setup page. (and automaticall adapt the calculated speeds on the help page)
Where 0° = facing upward.
I could then dynamically adapt the FOV related parameters in the signal processing part.

bin number configuration

"First and last bin-number for each bin-group (uint16 firstBin[32], uint16 lastBin[32])"

What shall get configured and how and where shall it be used?

Strategy for FHEM communication

Possibilities:

  1. ) as is (use dummy in FHEM)
  2. ) like LGW (firmware provides tcp-port and module works like 36_LaCrosseGateway)

Advantages:

  1. ) nothing else must get implemented

  2. ) FHEM module can provide options (that can or should not be in the firmware) like

  • OTA update
  • calculations
  • validations
  • settings (like init commands in LGW)

Tools::GetChipRevision() 'EFUSE_RD_CHIP_VER_RESERVE_S' was not declared in this scope

Hi,

I compiled today the version V0.17.1 with arduino and encoundered obove mentioned problem.

It seems, that the old code in Tools.cpp does not work any more.

`String Tools::GetChipRevision() {
String result;

byte revision = (REG_READ(EFUSE_BLK0_RDATA3_REG) >> EFUSE_RD_CHIP_VER_RESERVE_S) && EFUSE_RD_CHIP_VER_RESERVE_V;
switch (revision) {
case 0:
result = "0 (2016.09)";
break;
case 1:
result = "1 (2017.02)";
break;
default:
result = String(revision) + "(unknown)";
break;
}

return result;
}`

replacing the string behind byte revision to

`String Tools::GetChipRevision() {
String result;

byte revision = (REG_READ(EFUSE_BLK0_RDATA3_REG) >> (EFUSE_CHIP_VER_REV1_S)&&EFUSE_CHIP_VER_REV1_V) ;
switch (revision) {
case 0:
result = "0 (2016.09)";
break;
case 1:
result = "1 (2017.02)";
break;
default:
result = String(revision) + "(unknown)";
break;
}

return result;
}`

fixed the problem.

Regards,
Andreas Gaßner

Add the help page

Initial content: the list of bins from 1 ... 255 with frequency and speed in m/s and km/h

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.