Commit Graph

676 Commits (e090cdc22af3773b141de7d476abaf8220467de2)
 

Author SHA1 Message Date
theFeiter 9e700ca315 resend logged values if mqtt connection is back
ATM using the csv lines
deleting the lofgile after resending
2 years ago
Sascha 7a524fe456
Update README.md
Added section on USE_ESPNOW.
2 years ago
Sascha 62c247275a Applied changes to FDRS_Sensor and FDRS_Gateway folders 2 years ago
Sascha ae85886e65 added #define USE_ESPNOW to gateway code
Including sections which are ESPNOW specific only if #define USE_ESPNOW is enabled.
2 years ago
Sascha 5e85269373 Clean up of #72
- moved configuration checkup to external file to make sensor and gateway files smaller.
- for sensors the config now only is shown if the sensor does NOT return from Deep Sleep. For example when pressing the reset button or after a crash.
- for gateways the configuration is shown once and also can be forced to be shown with a reset. Code should work for ESP32 and ESP8266 - have only tested it with ESP32.
- fixed issue in fdrs_functions.h - if MQTT_AUTH was enabled but WIFI disabled, the compile crashed.
2 years ago
Timm Bogner 62685452ad
Merge pull request #72 from Gulpman/dev
Dev - partial fix of #71
2 years ago
Timm Bogner d04639a865 Finished ping support
Not immediately useful, but it is interesting to know how low an FDRS ping is (in ms). I won't ruin the surprise, but it's pretty low.

More importantly however, I laid out how SystemPackets will work. I might rename those.
2 years ago
Sascha 5027623cb8 Fixing configuration system - part 2: gateways
Further work on #71 :
- Added config code to fdrs_functions.h.
- Commented all local config settings -> global config settings will be taken by default.
- added a debugConfig function, to check from where settings have been taken. May be moved to a place where sensors and gateways can share code as this is needed only once. For the sake of simplicity the function made it into fdrs_sensor.h and fdrs_functions.h Needs to be refined, as there is redundancy right now.
2 years ago
Sascha cfa57e388b Fixing configuration system - part 1: sensors
Fixed the configuration system for sensor nodes. Gateway nodes are still to be fixed (work still in process :) )
This has been addressed in #71

Important: For this system to work and make the onboarding easier for new users, global settings must be used by default and therefore local settings must be commented out by default.
2 years ago
Sascha d6201fdd6d Update fdrs_sensor.h
Missed one :)
2 years ago
Sascha c27bffe1ec Further debug enhancements
Added Id and data content to debug message.
Also changed the order to meet the serial debug output of the gateway - this way it is much easier to check if what has been sent is what has been received.
2 years ago
Sascha b73b7a4b1c Added LoRa Debug info for BAND and SF to all nodes for better debugging
As there is still a lot of redundancy in the project, in a first step I added the debug messages in each of the places.
2 years ago
Sascha 7526439d85 Return random vaule for sensor nodes
the return value in the sensor sketches was missing the random function. Fixed that.
2 years ago
Sascha 7c15bdf675 Update fdrs_globals.h
No change to the content - just putting blocks together for simpler overview.
2 years ago
Timm Bogner 3c3231e4f0 implementing SystemPackets 2 years ago
theFeiter b7541a8e00 send timestamp on mqtt 2 years ago
Sascha c0e28b0403 LoRa debug: show band and sf for better debugging 2 years ago
Timm Bogner 7090109008
Merge pull request #68 from timmbogner/dev
New in this release:
- Added "FDRS_" prefixes to many macros/variables. (@Gulpman )
- Added SD card backup for MQTT gateways. (@thefeiter)
2 years ago
Timm Bogner a8339f1136
Merge branch 'main' into dev 2 years ago
Timm Bogner 17e33b82af
Update README.md 2 years ago
Timm Bogner 699d7a2840 shwoop 2 years ago
Timm Bogner 5adb4a6728
Update README.md 2 years ago
Timm Bogner 1ce8a3eb2b dink
Changed the spammer a little and adjusted some other stuff.
2 years ago
Timm Bogner 6a5e7acd13 sensors are go 2 years ago
Timm Bogner d3e137ab8b unifying gateways etc
more to come
2 years ago
Timm Bogner c5f9064f03
Merge pull request #64 from Gulpman/dev
Small improvement to debug messages in fdrs_sensor.cpp
2 years ago
Sascha 087b9f30c8 house keeping
Added some comments for easier browsing through the source and corrected a type.
2 years ago
Sascha dbf6d5b082 Removed double-include of fdrs_gateway_config.h
fdrs_gateway_config. h was included twice. I also simplified th USE_LED configuration block (was defined twice, could be done in one block.
2 years ago
Sascha 454365d453 House keeping on keywords.txt, library.properties and README.md
- added missing categories in keywords.txt
- added dependency of ArduinoJson in library.properties (I didn't add LoRa and PubSubClient but think they should go there as well)
- reformatted paragraph on dependencies  as list for better readability
2 years ago
Sascha 3878c27725 Fixed #59
Fixed #59 with the help of aviateur17. Explanation here: https://github.com/timmbogner/Farm-Data-Relay-System/issues/59#issuecomment-1183915731
2 years ago
Sascha e958b328a0 Update fdrs_globals.h
Added header comment
2 years ago
Sascha 54b21e9a3b Fixed unallowed extra tokens after #endif
Extra tokens at end of #endif directive are not allowed. Arudino IDE does not care but Platform IO does. The specification forbids is as well, so adding a comment behind the endif is a good compromise between overview and conformity.
2 years ago
Sascha c6b16143a9 Replaced undefined sleep_time with seconds 2 years ago
Sascha 4b2892dd55 Small improvement to debug messages in fdrs_sensor.cpp
Just two small additions making debugging a little bit more convenient:

- Added value of data to FDRSBase::load
- Added additional text tp FDRSLoRa::init
2 years ago
Timm Bogner 16507eb25a
Merge pull request #62 from thefeiter/use-internal-ntp-api
Use internal NTP api
2 years ago
theFeiter d1872b1d53 replace external ntp with internal ntp 2 years ago
Timm Bogner b91920517f
Merge pull request #58 from Gulpman/dev
Bugfix: Updated fdrs_sensor.h of Universal_Sensor_beta
2 years ago
Sascha 0fd7a84dca Added support to choose either LoRa or ESPNow sensor
by defining USE_LORA or USE_ESPNOW the sensor is set up as exactly that.
2 years ago
Sascha daf4adefd9 Debug helper :)
I find it very convenient for testing to have altering values within the sensor sketches, as it is easier to see if new values are arriving. Therefore replaced the fixed humidity value to a random value between 0-100.
2 years ago
Sascha ef573a8f45 Bugfix: Updated fdrs_sensor.h of Universal_Sensor_beta
A "LORA" was missing in the definition for FDRS_... Lora settings which led to a compile error. Fixed.
2 years ago
Timm Bogner d952081a22
Merge pull request #56 from thefeiter/buffer-log-writes
Buffer log writes before saving them to the file.
2 years ago
Timm Bogner 5822d8e0d9 Merge branch 'dev' into okay-wait-now-i-really-got-this 2 years ago
Timm Bogner 7a6a411547
Merge pull request #57 from Gulpman/dev
Dev: Cleaned up naming of configuration files
2 years ago
Timm Bogner d37fdec9fc moved to its folder 2 years ago
Sascha 0d7c767070 Added example from @Devilbinder to the repo
Added the example sketch.
At the moment this resides in a separate folder but after the Universal_Gateway has been finished this could be moved into the Full_System_Example or a generic Gateway_Examples folder.
2 years ago
Sascha 9ab5be2258 Update keywords.txt
Added further entries to keywords.txt
2 years ago
Sascha 700f87b6a4 houeskeeping in Universal Sensor's config file
Put FDRS_DEBUG to top
Some formatting and further explanations on the settings.
Uncommented local LoRa settings, so by default the global fdrs settings are taken.
This makes the setup process easier and less error-prone.
2 years ago
Sascha acf53e6ed5 Refactored gateway config files
Refactored fdrs_config.h to fdrs_gateway_config.h
This way it is directly visible from within a folder, what the config is for.
2 years ago
Sascha 249904fbc4 Refactoring for easier understanding while coding
Step one: refactor sensor_setup.h -> fdrs_sensor.h
2 years ago
Sascha 52f0d0c9ce
Merge branch 'timmbogner:dev' into dev 2 years ago