You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
weatherstation/firmware
Kai Lauterbach 58ea2c1822
Removed all library files because the compilation works using the arduino library manager.
3 weeks ago
..
.vscode Added http get call functionality and fixed spaces in code. 4 months ago
README.md WifiManager reset feature added to webUpdater. 10 months ago
config.h Added eeprom emulation to store reset info 2 months ago
config_user.h.example Added USB voltage read sensor 1 month ago
constants.h Added USB voltage read sensor 1 month ago
datastore.ino Added eeprom emulation to store reset info 2 months ago
firmware.ino Added USB voltage read sensor 1 month ago
influxdb.ino Added USB voltage read sensor 1 month ago
sensor_apds9930.ino Code optically cleared 6 months ago
sensor_apds9960.ino Code optically cleared 6 months ago
sensor_battery.ino Added USB voltage read sensor 1 month ago
sensor_bme280.ino Code optically cleared 6 months ago
sensor_bmp280.ino Fixed debug output in dmp280 sensor code and removed unused function. 5 months ago
sensor_wind.ino Fixed wind sensor interrupt handling. 4 months ago
webUpdater.ino Added USB voltage read sensor 1 month ago

README.md

øko weatherstatiøn firmware

How to get started with Arduino

https://git.okoyono.de/oko/weatherstation/wiki#flashing-the-firmware

FAQ

Why bundle external libs?

We decided to put these libs inside the project folder, because we have a lot of issues with finding the right libs (some libs need a specific version, some libs have no unique name, some libs are broken, ...). This is not a fine software engineering practice, but it was too much of a hassle to get this right, so we decided to put everything in version control. This way, we also can control the version of the lib, which makes the build process of this project more robust to changes.

You can update the libs using the Arduino IDE.

How to fix error: Can't find file config_user.h?

If you compile the source code and it can't find this file, this is intentional :) You need to create a config_user.h with your own settings. Use the config_user.h.example as a starting point.

How to fix java exception on Serial Port open?

That can happen with openjdk 8. Try a newer openjdk version (>9)

How can I add a new Sensor?

  • Create a file sensor_$sensorname.ino
  • Add flag to config_user.h (don't forget to update config_user.h.example
  • Add initialization method of sensor (should be named sensor_$sensorname_begin() to setup() in firmware.ino guarded with preprocessor flag
  • Create method without parameters returning a float and safe function reference into sensors array

Whats wrong with all the NaN's?

If a sensor does not produce a value the sensor value is Not a Number (NaN). InfluxDB client will filter NaN values before sending the data.

nanf() returns a float NaN. The argument can be used by library implementations to distinguish different NaN values in a implementation-specific manner.

Wishlist