Typos fixed

master
marcel 4 months ago
parent d71e334bd8
commit 309fef8c1d
  1. 2
      CHANGELOG.md
  2. 2
      build-doc/template/template.html
  3. 15
      build-doc/weather_station.html
  4. 7
      build-doc/weather_station.md

@ -41,7 +41,7 @@ All notable changes to this project will be documented in this file.
- ModBus read register 14: Status bits - ModBus read register 14: Status bits
- ModBus coil register 0 : enable/disable heather algorithm - ModBus coil register 0 : enable/disable heather algorithm
## [0.2.2] - 2023-01-21 ## [0.2.2] - 2024-01-21
### Fixed ### Fixed

@ -68,7 +68,7 @@ $if(title)$
$endif$ $endif$
$if(website)$ $if(website)$
<li> <li>
<a href="$website$">Back</a> <a href="$page_back$">Back</a>
</li> </li>
$endif$ $endif$
</ul> </ul>

@ -63,10 +63,10 @@
<a href="./weather_station.pdf">PDF version</a> <a href="./weather_station.pdf">PDF version</a>
</li> </li>
<li> <li>
<a href="https://git.meezenest.nl/">Git repo</a> <a href="https://git.meezenest.nl/marcel/weather_station">Git repo</a>
</li> </li>
<li> <li>
<a href="https://meezenest.nl/mees/">Back</a> <a href="https://meezenest.nl/mees/weather_station.html">Back</a>
</li> </li>
</ul> </ul>
@ -512,7 +512,8 @@ alt="Microcontroller" />
</figure> </figure>
<p>Both the signals from the rain meter and the cup anemometer are <p>Both the signals from the rain meter and the cup anemometer are
connected to interrupt pins of the micro-controller. The signal from the connected to interrupt pins of the micro-controller. The signal from the
rain meter is lightly filtered by C8.</p> rain meter is lightly filtered by C8. The output of the wind vane is
connectd to an analog input of the micro-controller.</p>
<p>The ModBus address can be set by DIP switch J9.</p> <p>The ModBus address can be set by DIP switch J9.</p>
<h1 id="theory-of-operation---software">Theory of operation - <h1 id="theory-of-operation---software">Theory of operation -
Software</h1> Software</h1>
@ -774,10 +775,10 @@ by 10 or 100 to get the floating point values.</p>
<h1 id="prototype">Prototype</h1> <h1 id="prototype">Prototype</h1>
<p>I wanted to locate the weather station at about 100 meters from the <p>I wanted to locate the weather station at about 100 meters from the
house. That meant that interfacing the weather station was not just a house. That meant that interfacing the weather station was not just a
matter of connecting a wire to it. And 100 meters is a bit much for a matter of connecting a wire to it. And 100 meters is also a bit much for
wifi connection either. As I already had experience with LoRa I opted a wifi connection. As I already had experience with LoRa I opted for
for that. But not LoRaWAN, but LoRa APRS. This is a ham radio network that. But not LoRaWAN, but LoRa APRS. This is a ham radio network that I
that I often use. I even run my own digipeater. So LoRa APRS it is.</p> often use. I even run my own digipeater. So LoRa APRS it is.</p>
<figure> <figure>
<img src="./images/prototype_block_diagram.svg" <img src="./images/prototype_block_diagram.svg"
title="Block diagram of the prototype" title="Block diagram of the prototype"

@ -4,9 +4,10 @@ subtitle: with ModBus RTU interface
author: M.T. Konstapel author: M.T. Konstapel
date: 2024-01-22 date: 2024-01-22
website: https://meezenest.nl/mees/ website: https://meezenest.nl/mees/
page_back: https://meezenest.nl/mees/weather_station.html
logo: ./images/mees_logo.svg logo: ./images/mees_logo.svg
pdf_version: ./weather_station.pdf pdf_version: ./weather_station.pdf
git_repo: https://git.meezenest.nl/ git_repo: https://git.meezenest.nl/marcel/weather_station
numbersections: true numbersections: true
# Formatting: # Formatting:
geometry: "a4paper, left=2.0cm, right=2.0cm, top=1.9cm, bottom=2.54cm" geometry: "a4paper, left=2.0cm, right=2.0cm, top=1.9cm, bottom=2.54cm"
@ -210,7 +211,7 @@ The heart of the circuit is an Arduino Pro Mini, which is basically an Atmel ATm
![Microcontroller](./images/micro-controller.svg "Microcontroller") ![Microcontroller](./images/micro-controller.svg "Microcontroller")
Both the signals from the rain meter and the cup anemometer are connected to interrupt pins of the micro-controller. The signal from the rain meter is lightly filtered by C8. Both the signals from the rain meter and the cup anemometer are connected to interrupt pins of the micro-controller. The signal from the rain meter is lightly filtered by C8. The output of the wind vane is connectd to an analog input of the micro-controller.
The ModBus address can be set by DIP switch J9. The ModBus address can be set by DIP switch J9.
@ -319,7 +320,7 @@ Output coils registers are numbered 1 to 9999 but have data addresses 0x000 to 0
# Prototype # Prototype
I wanted to locate the weather station at about 100 meters from the house. That meant that interfacing the weather station was not just a matter of connecting a wire to it. And 100 meters is a bit much for a wifi connection either. As I already had experience with LoRa I opted for that. But not LoRaWAN, but LoRa APRS. This is a ham radio network that I often use. I even run my own digipeater. So LoRa APRS it is. I wanted to locate the weather station at about 100 meters from the house. That meant that interfacing the weather station was not just a matter of connecting a wire to it. And 100 meters is also a bit much for a wifi connection. As I already had experience with LoRa I opted for that. But not LoRaWAN, but LoRa APRS. This is a ham radio network that I often use. I even run my own digipeater. So LoRa APRS it is.
![Block diagram of the prototype](./images/prototype_block_diagram.svg "Block diagram of the prototype") ![Block diagram of the prototype](./images/prototype_block_diagram.svg "Block diagram of the prototype")

Loading…
Cancel
Save