Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
roema committed Apr 16, 2021
1 parent 619ad71 commit e66cf0d
Showing 1 changed file with 26 additions and 10 deletions.
36 changes: 26 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ There are also a few drawbacks to the traditional OGN receivers. Several protoco
## Harwdare
* LILYGO TTGO T-Beam (Lora, GPS, Bluetooth, Wifi, OLED)
* [TTGO T-Beam Aliexpress](https://s.click.aliexpress.com/e/_dTnxWSv)
* TTGO LoRa32 (**in progress** - Lora, Bluetooth, Wifi, OLED)
* TTGO LoRa32 (**TESTING** - Lora, Bluetooth, Wifi, OLED)

## Features:
* Power consumption around 20 mA in sleep mode - 120mA on normal mode
Expand Down Expand Up @@ -76,15 +76,18 @@ There are also a few drawbacks to the traditional OGN receivers. Several protoco
* You can update you installation http://you-ogn-ground-ip/update
* You can upload new .html .css files http://you-ogn-ground-ip/upload

## Easy Installation
## Easy Installation / Upgrade

* Download [binary image](https://github.com/roema/Open-Glider-Network-Groundstation/releases) and install it with web-updater
* Connect to Wifi OGN-XXXXXX with password 987654321
* Type 192.168.1.1 in you browser and you will see a file-upload page (only on first startup)
* Upload index.html, update.html and style.css
* You can also upload a file called <ogn_conf.txt> with Wifi and Callsign configuration
* **new config.json is required!**
* Reset and connect again

### Upgrade
**Since there were more and more faulty files during an update, the SPIFFS memory is formatted during a firmware update.**

## Configuration File - config.json

**The groundstation is configured via a json file. All other text files (zabbix.txt, ogn_conf.txt) are no longer required.**
Expand All @@ -100,7 +103,7 @@ There are also a few drawbacks to the traditional OGN receivers. Several protoco
"xxxxxxx"
],
"pass":[
"pass",
"password",
"xxxxxxx",
"xxxxxxx",
"xxxxxxx",
Expand All @@ -120,10 +123,14 @@ There are also a few drawbacks to the traditional OGN receivers. Several protoco
"port":10051,
"key":"ogn_base"
},
"fanet":{
"enc":false,
"aeskey":"password"
"testmode":{
"enable":false
},
"remotelogs":{
"enable":false,
"server":"xxx.xxxx.xxxx.xxxx",
"port":12000
},
"aprs":{
"callsign":"Neuenburg",
"server":"aprs.glidernet.org",
Expand All @@ -143,9 +150,6 @@ There are also a few drawbacks to the traditional OGN receivers. Several protoco
"fanetservice":{
"enable":1
},
"testmode":{
"enable":false
},
"beers":{
"show":0
}
Expand Down Expand Up @@ -192,6 +196,18 @@ If you have several ESP32 running, they will be displayed with different colors.

**Please note that no core dumps are shown here! A serial connection is necessary for this.**

A new section in config.json enables remote log server.

**I guarantee that no sensitive WiFi data will be transmitted!!**

```json
"remotelogs":{
"enable":false,
"server":"xxx.xxxx.xxxx.xxxx",
"port":12000
},
```


```python
import socket
Expand Down

0 comments on commit e66cf0d

Please sign in to comment.