kopia lustrzana https://github.com/lora-aprs/LoRa_APRS_iGate
fixing a lot of typos
rodzic
ad4e8491a2
commit
6a852a1bfe
|
@ -1,4 +1,4 @@
|
||||||
name: Integreation Tests
|
name: Integration Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
10
README.md
10
README.md
|
@ -1,7 +1,6 @@
|
||||||
# LoRa APRS iGate
|
# LoRa APRS iGate
|
||||||
|
|
||||||

|

|
||||||
[](https://app.codacy.com/gh/lora-aprs/LoRa_APRS_iGate?utm_source=github.com&utm_medium=referral&utm_content=lora-aprs/LoRa_APRS_iGate&utm_campaign=Badge_Grade_Dashboard)
|
|
||||||
|
|
||||||
The LoRa APRS iGate will work with very cheep hardware which you can buy from amazon, ebay or aliexpress.
|
The LoRa APRS iGate will work with very cheep hardware which you can buy from amazon, ebay or aliexpress.
|
||||||
Try it out and be part of the APRS network.
|
Try it out and be part of the APRS network.
|
||||||
|
@ -54,14 +53,14 @@ Keep in mind: you need a 433MHz version!
|
||||||
|
|
||||||
The best success is to use PlatformIO (and it is the only platform where I can support you).
|
The best success is to use PlatformIO (and it is the only platform where I can support you).
|
||||||
|
|
||||||
* Go to [PlatformIO](https://platformio.org/) download and install the IDE.
|
* Go to [PlatformIO](https://platformio.org/) download and install the IDE.
|
||||||
* If installed open the IDE, go to the left side and klick on 'extensions' then search for 'PatformIO' and install.
|
* If installed open the IDE, go to the left side and click on 'extensions' then search for 'PlatformIO' and install.
|
||||||
* When installed click 'the ant head' on the left and choose import the project on the right.
|
* When installed click 'the ant head' on the left and choose import the project on the right.
|
||||||
* Just open the folder and you can compile the Firmware.
|
* Just open the folder and you can compile the Firmware.
|
||||||
|
|
||||||
### Configuration
|
### Configuration
|
||||||
|
|
||||||
* You can find all nessesary settings to change for your configuration in **data/is-cfg.json**.
|
* You can find all necessary settings to change for your configuration in **data/is-cfg.json**.
|
||||||
* To upload it to your board you have to do this via **Upload File System image** in PlatformIO!
|
* To upload it to your board you have to do this via **Upload File System image** in PlatformIO!
|
||||||
* To find the 'Upload File System image' click the PlatformIO symbol (the little alien) on the left side, choose your configuration, click on 'Platform' and search for 'Upload File System image'.
|
* To find the 'Upload File System image' click the PlatformIO symbol (the little alien) on the left side, choose your configuration, click on 'Platform' and search for 'Upload File System image'.
|
||||||
|
|
||||||
|
@ -88,7 +87,7 @@ so the version will be: 20.46.0
|
||||||
## Future plans
|
## Future plans
|
||||||
|
|
||||||
* [x] show time until next beaconing
|
* [x] show time until next beaconing
|
||||||
* [ ] show login issues from IS server
|
* [x] show login issues from IS server
|
||||||
* [ ] add better OLED library to support multiple different OLEDs
|
* [ ] add better OLED library to support multiple different OLEDs
|
||||||
* [x] add support to turn OLED on, off and dimming
|
* [x] add support to turn OLED on, off and dimming
|
||||||
* [ ] add support for temperature chips (BMExxx)
|
* [ ] add support for temperature chips (BMExxx)
|
||||||
|
@ -117,4 +116,3 @@ The 'wrong' display works too but you have to change VCC and GND by wire !
|
||||||
The [LoRa APRS WiKi Displays](https://github.com/lora-aprs/LoRa_APRS_Tracker/wiki/Displays) page has more details.
|
The [LoRa APRS WiKi Displays](https://github.com/lora-aprs/LoRa_APRS_Tracker/wiki/Displays) page has more details.
|
||||||
|
|
||||||
Feel free to add hints!
|
Feel free to add hints!
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ ConfigurationManagement::ConfigurationManagement(logging::Logger &logger, String
|
||||||
logger.log(logging::LoggerLevel::LOGGER_LEVEL_INFO, MODULE_NAME, "Mounting SPIFFS was not possible. Trying to format SPIFFS...");
|
logger.log(logging::LoggerLevel::LOGGER_LEVEL_INFO, MODULE_NAME, "Mounting SPIFFS was not possible. Trying to format SPIFFS...");
|
||||||
SPIFFS.format();
|
SPIFFS.format();
|
||||||
if (!SPIFFS.begin()) {
|
if (!SPIFFS.begin()) {
|
||||||
logger.log(logging::LoggerLevel::LOGGER_LEVEL_ERROR, MODULE_NAME, "Formating SPIFFS was not okay!");
|
logger.log(logging::LoggerLevel::LOGGER_LEVEL_ERROR, MODULE_NAME, "Formatting SPIFFS was not okay!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@ bool OTATask::setup(System &system) {
|
||||||
} else { // U_SPIFFS
|
} else { // U_SPIFFS
|
||||||
type = "filesystem";
|
type = "filesystem";
|
||||||
}
|
}
|
||||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_INFO, getName(), "Start updating %s. please wait, this prozess is taking some time!", type.c_str());
|
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_INFO, getName(), "Start updating %s. please wait, this process is taking some time!", type.c_str());
|
||||||
})
|
})
|
||||||
.onEnd([&]() {
|
.onEnd([&]() {
|
||||||
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_INFO, getName(), "OTA End");
|
system.getLogger().log(logging::LoggerLevel::LOGGER_LEVEL_INFO, getName(), "OTA End");
|
||||||
|
|
Ładowanie…
Reference in New Issue