Fixed typo

This commit is contained in:
marcel
2025-08-01 11:35:12 +02:00
parent a8054215c2
commit d93355098d
2 changed files with 34 additions and 37 deletions

View File

@@ -1,3 +1,35 @@
# weather_station_MK2
# Weather Station MK2
Version 2 of the Mees Electronics weather station
The revised version of the Mees Electronics Weather Station
# New design philosophy
## Modular
Each sensor has its own RS485 connection. Sensors are daisy chained and the system is therefore expandable.
## Interface
The Weipu SP1312 / S 4, a 4 pole connector with an IP68 rating can be used as the physical interface. Each sensor has two identical connectors, for easy daisy chaining. connectors which are not used can be capped off with a weather proof cap. The cables use the Weipu SP1310 / P 4 connector.
## ModBus
Each sensor has a bus address, which can be set by DIP switches. Input registers store sensor data while output coils can be used to send commands to the sensors.
## Main controller
All sensors are connected via an RS485 bus to the main controller, the client. This unit collects the sensor data and publishes the data on a tcp/ip network via MQTT and a web interface. This unit can also function as a data logger. The data logger data can be accessed via a simple API.
The main controller has to know which sensors are connected. The ModBus addresses of all the sensors are stored in a configuration file. The client software can now poll these addresses and discover the sensors.
# Links
Useful resources:
[https://github.com/danjperron/rp2040-modbus_example/tree/main](https://github.com/danjperron/rp2040-modbus_example/tree/main)
# Licensing
(C) 2025 Marcel Konstapel [https://www.meezenest.nl/mees/](https://www.meezenest.nl/mees/)
Software under GPL, hardware and software under CC BY-SA 4.0.

View File

@@ -1,35 +0,0 @@
# Weather Station MK2
The revised version of the Mees Electronics Weather Station
# New design philosophy
## Modular
Each sensor has its own RS485 connection. Sensors are daisy chained and the system is therefore expandable.
## Interface
The Weipu SP1312 / S 4, a 4 pole connector with an IP68 rating can be used as the physical interface. Each sensor has two identical connectors, for easy daisy chaining. connectors which are not used can be capped off with a weather proof cap. The cables use the Weipu SP1310 / P 4 connector.
## ModBus
Each sensor has a bus address, which can be set by DIP switches. Input registers store sensor data while output coils can be used to send commands to the sensors.
## Main controller
All sensors are connected via an RS485 bus to the main controller, the client. This unit collects the sensor data and publishes the data on a tcp/ip network via MQTT and a web interface. This unit can also function as a data logger. The data logger data can be accessed via a simple API.
The main controller has to know which sensors are connected. The ModBus addresses of all the sensors are stored in a configuration file. The client software can now poll these addresses and discover the sensors.
# Links
Useful resources:
[https://github.com/danjperron/rp2040-modbus_example/tree/main](https://github.com/danjperron/rp2040-modbus_example/tree/main)
# Licensing
(C) 2025 Marcel Konstapel [https://www.meezenest.nl/mees/](https://www.meezenest.nl/mees/)
Software under GPL, hardware and software under CC BY-SA 4.0.