Compare commits
10 commits
2023-11-03
...
main
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c0c542a350 | ||
483622f430 | |||
7d0d07e928 | |||
ff5754f2d1 | |||
879aeb6c3c | |||
415aa3a606 | |||
94c2a7e43b | |||
ac306cb473 | |||
aa6c09e9aa | |||
8cc99d2437 |
31 changed files with 455 additions and 190 deletions
10
.github/workflows/workflow.yml
vendored
10
.github/workflows/workflow.yml
vendored
|
@ -35,16 +35,16 @@ jobs:
|
||||||
run: pip install --upgrade platformio
|
run: pip install --upgrade platformio
|
||||||
|
|
||||||
- name: Build BTClock firmware
|
- name: Build BTClock firmware
|
||||||
run: pio run -e esp32wemos-s3-mini_BW
|
run: pio run -e default
|
||||||
|
|
||||||
- name: Build BTClock filesystem
|
- name: Build BTClock filesystem
|
||||||
run: pio run -e esp32wemos-s3-mini_BW --target buildfs
|
run: pio run -e default --target buildfs
|
||||||
|
|
||||||
- name: Install esptools.py
|
- name: Install esptools.py
|
||||||
run: pip install --upgrade esptool
|
run: pip install --upgrade esptool
|
||||||
|
|
||||||
- name: Create merged firmware binary
|
- name: Create merged firmware binary
|
||||||
run: mkdir -p output && esptool.py --chip esp32s3 merge_bin -o output/full-firmware.bin --flash_mode dio 0x0000 .pio/build/esp32wemos-s3-mini_BW/bootloader.bin 0x8000 .pio/build/esp32wemos-s3-mini_BW/partitions.bin 0xe000 ~/.platformio/packages/framework-arduinoespressif32/tools/partitions/boot_app0.bin 0x10000 .pio/build/esp32wemos-s3-mini_BW/firmware.bin 0x330000 .pio/build/esp32wemos-s3-mini_BW/spiffs.bin
|
run: mkdir -p output && esptool.py --chip esp32s3 merge_bin -o output/full-firmware.bin --flash_mode dio 0x0000 .pio/build/default/bootloader.bin 0x8000 .pio/build/default/partitions.bin 0xe000 ~/.platformio/packages/framework-arduinoespressif32/tools/partitions/boot_app0.bin 0x10000 .pio/build/default/firmware.bin 0x330000 .pio/build/default/spiffs.bin
|
||||||
|
|
||||||
- name: Create checksum for merged binary
|
- name: Create checksum for merged binary
|
||||||
run: shasum -a 256 output/full-firmware.bin | awk '{print $1}' > output/full-firmware.sha256
|
run: shasum -a 256 output/full-firmware.bin | awk '{print $1}' > output/full-firmware.sha256
|
||||||
|
@ -59,14 +59,14 @@ jobs:
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
.pio/build/esp32wemos-s3-mini_BW/*.bin
|
.pio/build/default/*.bin
|
||||||
output/full-firmware.bin
|
output/full-firmware.bin
|
||||||
output/full-firmware.sha256
|
output/full-firmware.sha256
|
||||||
- name: Create release
|
- name: Create release
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
name: release-${{ steps.dateAndTime.outputs.dateAndTime }}
|
name: release-${{ steps.dateAndTime.outputs.dateAndTime }}
|
||||||
artifacts: "output/full-firmware.bin,output/full-firmware.sha256,.pio/build/esp32wemos-s3-mini_BW/*.bin"
|
artifacts: "output/full-firmware.bin,output/full-firmware.sha256,.pio/build/default/*.bin"
|
||||||
allowUpdates: true
|
allowUpdates: true
|
||||||
removeArtifacts: true
|
removeArtifacts: true
|
||||||
- name: Pushes full-firmware.bin to web flasher
|
- name: Pushes full-firmware.bin to web flasher
|
||||||
|
|
|
@ -63,8 +63,8 @@
|
||||||
<div class="progress-bar progress-bar-striped" style="width: {{ memUsage }}%">{{ memUsage }}%</div>
|
<div class="progress-bar progress-bar-striped" style="width: {{ memUsage }}%">{{ memUsage }}%</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex justify-content-between">
|
<div class="d-flex justify-content-between">
|
||||||
<div>Memory usage</div>
|
<div>Memory free</div>
|
||||||
<div>{{ memFree }} / {{ memTotal }} kB</div>
|
<div>{{ memFree }} / {{ memTotal }} KiB</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
|
@ -191,6 +191,13 @@
|
||||||
<input type="text" name="mempoolInstance" id="mempoolInstance" class="form-control">
|
<input type="text" name="mempoolInstance" id="mempoolInstance" class="form-control">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<label for="hostnamePrefix" class="col-sm-6 col-form-label col-form-label-sm">Hostname prefix</label>
|
||||||
|
<div class="col-sm-6">
|
||||||
|
<input type="text" name="hostnamePrefix" id="hostnamePrefix" class="form-control">
|
||||||
|
<div class="form-text">A restart is required to apply new hostname prefix.</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class=" col-sm-6">
|
<div class=" col-sm-6">
|
||||||
<div class="form-check form-switch">
|
<div class="form-check form-switch">
|
||||||
|
@ -227,7 +234,7 @@
|
||||||
<script id="screens-template" type="text/x-handlebars-template">
|
<script id="screens-template" type="text/x-handlebars-template">
|
||||||
{{#each screens }}
|
{{#each screens }}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class=" col-sm-6">
|
<div class="col-sm-12">
|
||||||
<div class="form-check form-switch">
|
<div class="form-check form-switch">
|
||||||
<input class="form-check-input" type="checkbox" id="screen{{id}}" name="screen[{{id}}]" value="1" {{#if enabled}}checked{{/if}}>
|
<input class="form-check-input" type="checkbox" id="screen{{id}}" name="screen[{{id}}]" value="1" {{#if enabled}}checked{{/if}}>
|
||||||
<label class="form-check-label" for="screen{{id}}">{{name}}</label>
|
<label class="form-check-label" for="screen{{id}}">{{name}}</label>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import './helpers.js';
|
import './helpers.js';
|
||||||
|
|
||||||
var screens = ["Block Height", "Moscow Time", "Ticker", "Time", "Halving countdown"];
|
var screens = ["Block Height", "Moscow Time", "Ticker", "Time", "Halving countdown", "Market Cap"];
|
||||||
|
|
||||||
toTime = (secs) => {
|
toTime = (secs) => {
|
||||||
var hours = Math.floor(secs / (60 * 60));
|
var hours = Math.floor(secs / (60 * 60));
|
||||||
|
@ -28,7 +28,7 @@ getBcStatus = () => {
|
||||||
var source = document.getElementById("entry-template").innerHTML;
|
var source = document.getElementById("entry-template").innerHTML;
|
||||||
var template = Handlebars.compile(source);
|
var template = Handlebars.compile(source);
|
||||||
|
|
||||||
var context = { timerRunning: jsonData.timerRunning, memUsage: Math.round(jsonData.espFreeHeap / jsonData.espHeapSize * 100), memFree: (jsonData.espFreeHeap / 1000), memTotal: (jsonData.espHeapSize / 1000), uptime: toTime(jsonData.espUptime), currentScreen: jsonData.currentScreen, rendered: jsonData.rendered, data: jsonData.data, screens: screens, ledStatus: jsonData.ledStatus ? jsonData.ledStatus.map((t) => (t).toString(16)) : [] };
|
var context = { timerRunning: jsonData.timerRunning, memUsage: Math.round(jsonData.espFreeHeap / jsonData.espHeapSize * 100), memFree: (jsonData.espFreeHeap / 1024), memTotal: (jsonData.espHeapSize / 1024), uptime: toTime(jsonData.espUptime), currentScreen: jsonData.currentScreen, rendered: jsonData.rendered, data: jsonData.data, screens: screens, ledStatus: jsonData.ledStatus ? jsonData.ledStatus.map((t) => (t).toString(16)) : [] };
|
||||||
|
|
||||||
|
|
||||||
document.getElementById('output').innerHTML = template(context);
|
document.getElementById('output').innerHTML = template(context);
|
||||||
|
@ -76,6 +76,7 @@ fetch('/api/settings', {
|
||||||
document.getElementById('fullRefreshMin').value = jsonData.fullRefreshMin;
|
document.getElementById('fullRefreshMin').value = jsonData.fullRefreshMin;
|
||||||
document.getElementById('wpTimeout').value = jsonData.wpTimeout;
|
document.getElementById('wpTimeout').value = jsonData.wpTimeout;
|
||||||
document.getElementById('mempoolInstance').value = jsonData.mempoolInstance;
|
document.getElementById('mempoolInstance').value = jsonData.mempoolInstance;
|
||||||
|
document.getElementById('hostnamePrefix').value = jsonData.hostnamePrefix;
|
||||||
|
|
||||||
if (jsonData.gitRev)
|
if (jsonData.gitRev)
|
||||||
document.getElementById('gitRev').innerHTML = "Version: " + jsonData.gitRev;
|
document.getElementById('gitRev').innerHTML = "Version: " + jsonData.gitRev;
|
||||||
|
|
BIN
doc/Rev.B/IMG_3310.jpeg
Normal file
BIN
doc/Rev.B/IMG_3310.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 MiB |
BIN
doc/Rev.B/IMG_3313.jpeg
Normal file
BIN
doc/Rev.B/IMG_3313.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 MiB |
BIN
doc/Rev.B/IMG_3314.jpeg
Normal file
BIN
doc/Rev.B/IMG_3314.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 2 MiB |
BIN
doc/Rev.B/IMG_3317.jpeg
Normal file
BIN
doc/Rev.B/IMG_3317.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 MiB |
|
@ -19,21 +19,19 @@ upload_speed = 921600
|
||||||
monitor_filters = esp32_exception_decoder, colorize
|
monitor_filters = esp32_exception_decoder, colorize
|
||||||
extra_scripts = post:scripts/extra_script.py
|
extra_scripts = post:scripts/extra_script.py
|
||||||
build_flags = !python scripts/git_rev.py
|
build_flags = !python scripts/git_rev.py
|
||||||
lib_deps =
|
|
||||||
bblanchon/ArduinoJson@^6.21.2
|
|
||||||
fbiego/ESP32Time@^2.0.1
|
|
||||||
https://github.com/dsbaars/GxEPD2#universal_pin
|
|
||||||
https://github.com/dsbaars/universal_pin
|
|
||||||
adafruit/Adafruit MCP23017 Arduino Library@^2.3.0
|
|
||||||
adafruit/Adafruit NeoPixel@^1.11.0
|
|
||||||
https://github.com/me-no-dev/ESPAsyncWebServer.git
|
|
||||||
https://github.com/tzapu/WiFiManager.git#v2.0.16-rc.2
|
|
||||||
|
|
||||||
[esp32wemos-s3-mini_BW_base]
|
[esp32wemos-s3-mini_BW_base]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
framework = arduino
|
framework = arduino
|
||||||
board = lolin_s3_mini
|
board = lolin_s3_mini
|
||||||
board_build.partitions = partition.csv
|
board_build.partitions = partition.csv
|
||||||
|
lib_deps =
|
||||||
|
bblanchon/ArduinoJson@^6.21.2
|
||||||
|
fbiego/ESP32Time@^2.0.1
|
||||||
|
adafruit/Adafruit MCP23017 Arduino Library@^2.3.0
|
||||||
|
adafruit/Adafruit NeoPixel@^1.11.0
|
||||||
|
https://github.com/me-no-dev/ESPAsyncWebServer.git
|
||||||
|
https://github.com/tzapu/WiFiManager.git#v2.0.16-rc.2
|
||||||
build_flags =
|
build_flags =
|
||||||
!python scripts/git_rev.py
|
!python scripts/git_rev.py
|
||||||
-DLAST_BUILD_TIME=$UNIX_TIME
|
-DLAST_BUILD_TIME=$UNIX_TIME
|
||||||
|
@ -47,15 +45,34 @@ build_flags =
|
||||||
-D ARDUINO_USB_CDC_ON_BOOT
|
-D ARDUINO_USB_CDC_ON_BOOT
|
||||||
-D HOSTNAME="\"btclock3\""
|
-D HOSTNAME="\"btclock3\""
|
||||||
-mfix-esp32-psram-cache-issue
|
-mfix-esp32-psram-cache-issue
|
||||||
|
-fexceptions
|
||||||
|
-DPIO_FRAMEWORK_ARDUINO_ENABLE_EXCEPTIONS
|
||||||
|
build_unflags = -fno-exceptions
|
||||||
|
|
||||||
|
zinggjm/GxEPD2@^1.5.2
|
||||||
|
|
||||||
[env:esp32wemos-s3-mini_BW]
|
[env:esp32wemos-s3-mini_BW]
|
||||||
extends = esp32wemos-s3-mini_BW_base
|
extends = esp32wemos-s3-mini_BW_base
|
||||||
build_flags =
|
build_flags =
|
||||||
${esp32wemos-s3-mini_BW_base.build_flags}
|
${esp32wemos-s3-mini_BW_base.build_flags}
|
||||||
|
https://github.com/dsbaars/GxEPD2#universal_pin
|
||||||
|
https://github.com/dsbaars/universal_pin
|
||||||
|
-DUSE_UNIVERSAL_PIN
|
||||||
-D NUM_SCREENS=7
|
-D NUM_SCREENS=7
|
||||||
|
lib_deps =
|
||||||
|
${esp32wemos-s3-mini_BW_base.lib_deps}
|
||||||
|
|
||||||
[env:esp32wemos-s3-mini_BW_9disp]
|
[env:esp32wemos-s3-mini_BW_9disp]
|
||||||
extends = esp32wemos-s3-mini_BW_base
|
extends = esp32wemos-s3-mini_BW_base
|
||||||
build_flags =
|
build_flags =
|
||||||
${esp32wemos-s3-mini_BW_base.build_flags}
|
${esp32wemos-s3-mini_BW_base.build_flags}
|
||||||
-D NUM_SCREENS=9
|
-D NUM_SCREENS=9
|
||||||
|
|
||||||
|
[env:default]
|
||||||
|
extends = esp32wemos-s3-mini_BW_base
|
||||||
|
build_flags =
|
||||||
|
${esp32wemos-s3-mini_BW_base.build_flags}
|
||||||
|
-D NUM_SCREENS=7
|
||||||
|
lib_deps =
|
||||||
|
${esp32wemos-s3-mini_BW_base.lib_deps}
|
||||||
|
zinggjm/GxEPD2@^1.5.2
|
|
@ -26,7 +26,7 @@ void setFgColor(int color)
|
||||||
|
|
||||||
void showSetupQr(const String &ssid, const String &password)
|
void showSetupQr(const String &ssid, const String &password)
|
||||||
{
|
{
|
||||||
char displayIndex = 6;
|
uint displayIndex = 6;
|
||||||
|
|
||||||
const String text = "WIFI:S:" + ssid + ";T:WPA;P:" + password + ";;";
|
const String text = "WIFI:S:" + ssid + ";T:WPA;P:" + password + ";;";
|
||||||
|
|
||||||
|
|
|
@ -36,8 +36,8 @@ void setupSoftAP()
|
||||||
{
|
{
|
||||||
byte mac[6];
|
byte mac[6];
|
||||||
WiFi.macAddress(mac);
|
WiFi.macAddress(mac);
|
||||||
softAP_SSID = String("BTClock" + String(mac[5], 16) + String(mac[1], 16));
|
softAP_SSID = getMyHostname().c_str();
|
||||||
WiFi.setHostname(softAP_SSID.c_str());
|
WiFi.setHostname(getMyHostname().c_str());
|
||||||
softAP_password = base64::encode(String(mac[2], 16) + String(mac[4], 16) + String(mac[5], 16) + String(mac[1], 16)).substring(2, 10);
|
softAP_password = base64::encode(String(mac[2], 16) + String(mac[4], 16) + String(mac[5], 16) + String(mac[1], 16)).substring(2, 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ void setupComponents()
|
||||||
pixels.show();
|
pixels.show();
|
||||||
// delay(200);
|
// delay(200);
|
||||||
pinMode(MCP_INT_PIN, INPUT);
|
pinMode(MCP_INT_PIN, INPUT);
|
||||||
mcp.setupInterrupts(true, false, LOW);
|
mcp.setupInterrupts(false, false, LOW);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -180,7 +180,9 @@ void setupPreferences()
|
||||||
{SCREEN_MSCW_TIME, "Sats per dollar"},
|
{SCREEN_MSCW_TIME, "Sats per dollar"},
|
||||||
{SCREEN_BTC_TICKER, "Ticker"},
|
{SCREEN_BTC_TICKER, "Ticker"},
|
||||||
{SCREEN_TIME, "Time"},
|
{SCREEN_TIME, "Time"},
|
||||||
{SCREEN_HALVING_COUNTDOWN, "Halving countdown"}};
|
{SCREEN_HALVING_COUNTDOWN, "Halving countdown"},
|
||||||
|
{SCREEN_MARKET_CAP, "Market Cap"}
|
||||||
|
};
|
||||||
|
|
||||||
#ifdef WITH_RGB_LED
|
#ifdef WITH_RGB_LED
|
||||||
pixels.setBrightness(preferences.getUInt("ledBrightness", 128));
|
pixels.setBrightness(preferences.getUInt("ledBrightness", 128));
|
||||||
|
@ -222,28 +224,24 @@ void handleScreenTasks(uint screen)
|
||||||
vTaskSuspend(blockNotifyTaskHandle);
|
vTaskSuspend(blockNotifyTaskHandle);
|
||||||
if (getPriceTaskHandle)
|
if (getPriceTaskHandle)
|
||||||
vTaskSuspend(getPriceTaskHandle);
|
vTaskSuspend(getPriceTaskHandle);
|
||||||
if (minuteTaskHandle)
|
|
||||||
vTaskSuspend(minuteTaskHandle);
|
|
||||||
switch (currentScreen)
|
switch (currentScreen)
|
||||||
{
|
{
|
||||||
case SCREEN_BLOCK_HEIGHT:
|
case SCREEN_BLOCK_HEIGHT:
|
||||||
if (blockNotifyTaskHandle)
|
|
||||||
{
|
|
||||||
vTaskResume(blockNotifyTaskHandle);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case SCREEN_HALVING_COUNTDOWN:
|
case SCREEN_HALVING_COUNTDOWN:
|
||||||
if (blockNotifyTaskHandle)
|
if (blockNotifyTaskHandle)
|
||||||
vTaskResume(blockNotifyTaskHandle);
|
vTaskResume(blockNotifyTaskHandle);
|
||||||
break;
|
break;
|
||||||
case SCREEN_BTC_TICKER:
|
case SCREEN_BTC_TICKER:
|
||||||
if (getPriceTaskHandle)
|
|
||||||
vTaskResume(getPriceTaskHandle);
|
|
||||||
break;
|
|
||||||
case SCREEN_MSCW_TIME:
|
case SCREEN_MSCW_TIME:
|
||||||
if (getPriceTaskHandle)
|
if (getPriceTaskHandle)
|
||||||
vTaskResume(getPriceTaskHandle);
|
vTaskResume(getPriceTaskHandle);
|
||||||
break;
|
break;
|
||||||
|
case SCREEN_MARKET_CAP:
|
||||||
|
if (getPriceTaskHandle)
|
||||||
|
vTaskResume(getPriceTaskHandle);
|
||||||
|
if (blockNotifyTaskHandle)
|
||||||
|
vTaskResume(blockNotifyTaskHandle);
|
||||||
|
break;
|
||||||
case SCREEN_TIME:
|
case SCREEN_TIME:
|
||||||
if (minuteTaskHandle)
|
if (minuteTaskHandle)
|
||||||
{
|
{
|
||||||
|
@ -376,18 +374,21 @@ void showNetworkSettings()
|
||||||
String ipAddr = WiFi.localIP().toString();
|
String ipAddr = WiFi.localIP().toString();
|
||||||
String subNet = WiFi.subnetMask().toString();
|
String subNet = WiFi.subnetMask().toString();
|
||||||
|
|
||||||
epdContent[1] = "IP/Subnet";
|
epdContent[0] = "IP/Subnet";
|
||||||
|
|
||||||
int ipAddrPos = 0;
|
int ipAddrPos = 0;
|
||||||
int subnetPos = 0;
|
int subnetPos = 0;
|
||||||
for (int i = 0; i < 4; i++)
|
for (int i = 0; i < 4; i++)
|
||||||
{
|
{
|
||||||
epdContent[2 + i] = ipAddr.substring(0, ipAddr.indexOf('.')) + "/" + subNet.substring(0, subNet.indexOf('.'));
|
epdContent[1 + i] = ipAddr.substring(0, ipAddr.indexOf('.')) + "/" + subNet.substring(0, subNet.indexOf('.'));
|
||||||
ipAddrPos = ipAddr.indexOf('.') + 1;
|
ipAddrPos = ipAddr.indexOf('.') + 1;
|
||||||
subnetPos = subNet.indexOf('.') + 1;
|
subnetPos = subNet.indexOf('.') + 1;
|
||||||
ipAddr = ipAddr.substring(ipAddrPos);
|
ipAddr = ipAddr.substring(ipAddrPos);
|
||||||
subNet = subNet.substring(subnetPos);
|
subNet = subNet.substring(subnetPos);
|
||||||
}
|
}
|
||||||
|
epdContent[NUM_SCREENS-2] = "RAM/Status";
|
||||||
|
|
||||||
|
epdContent[NUM_SCREENS-1] = String((int)round(ESP.getFreeHeap()/1024)) + "/" + (int)round(ESP.getHeapSize()/1024);
|
||||||
|
|
||||||
CustomTextScreen::setText(epdContent);
|
CustomTextScreen::setText(epdContent);
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
//#include <WiFiMulti.h>
|
//#include <WiFiMulti.h>
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "utils.hpp"
|
||||||
#include "shared.hpp"
|
#include "shared.hpp"
|
||||||
#include "Adafruit_GFX.h"
|
#include "Adafruit_GFX.h"
|
||||||
#include "lib/epd.hpp"
|
#include "lib/epd.hpp"
|
||||||
|
|
54
src/lib/utils.cpp
Normal file
54
src/lib/utils.cpp
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
#include "utils.hpp";
|
||||||
|
|
||||||
|
double getSupplyAtBlock(uint blockNr) {
|
||||||
|
if (blockNr >= 33 * 210000) {
|
||||||
|
return 20999999.9769;
|
||||||
|
}
|
||||||
|
|
||||||
|
const int initialBlockReward = 50; // Initial block reward
|
||||||
|
const int halvingInterval = 210000; // Number of blocks before halving
|
||||||
|
|
||||||
|
int halvingCount = blockNr / halvingInterval;
|
||||||
|
double totalBitcoinInCirculation = 0;
|
||||||
|
|
||||||
|
for (int i = 0; i < halvingCount; ++i) {
|
||||||
|
totalBitcoinInCirculation += halvingInterval * initialBlockReward * std::pow(0.5, i);
|
||||||
|
}
|
||||||
|
|
||||||
|
totalBitcoinInCirculation += (blockNr % halvingInterval) * initialBlockReward * std::pow(0.5, halvingCount);
|
||||||
|
|
||||||
|
return totalBitcoinInCirculation;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string formatNumberWithSuffix(int64_t num) {
|
||||||
|
const long long quadrillion = 1000000000000000LL;
|
||||||
|
const long long trillion = 1000000000000LL;
|
||||||
|
const long long billion = 1000000000;
|
||||||
|
const long long million = 1000000;
|
||||||
|
const long long thousand = 1000;
|
||||||
|
|
||||||
|
if (num >= quadrillion) {
|
||||||
|
return std::to_string(num / quadrillion) + "Q";
|
||||||
|
} else if (num >= trillion) {
|
||||||
|
return std::to_string(num / trillion) + "T";
|
||||||
|
} else if (num >= billion) {
|
||||||
|
return std::to_string(num / billion) + "B";
|
||||||
|
} else if (num >= million) {
|
||||||
|
return std::to_string(num / million) + "M";
|
||||||
|
} else if (num >= thousand) {
|
||||||
|
return std::to_string(num / thousand) + "K";
|
||||||
|
} else {
|
||||||
|
return std::to_string(num);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
String getMyHostname() {
|
||||||
|
uint8_t mac[6];
|
||||||
|
//WiFi.macAddress(mac);
|
||||||
|
esp_efuse_mac_get_default(mac);
|
||||||
|
char hostname[15];
|
||||||
|
String hostnamePrefix = preferences.getString("hostnamePrefix", "btclock");
|
||||||
|
snprintf(hostname, sizeof(hostname), "%s-%02x%02x%02x",
|
||||||
|
hostnamePrefix, mac[3], mac[4], mac[5]);
|
||||||
|
return hostname;
|
||||||
|
}
|
7
src/lib/utils.hpp
Normal file
7
src/lib/utils.hpp
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "shared.hpp"
|
||||||
|
|
||||||
|
double getSupplyAtBlock(uint blockNr);
|
||||||
|
std::string formatNumberWithSuffix(int64_t num);
|
||||||
|
String getMyHostname();
|
|
@ -52,7 +52,7 @@ void setupWebserver()
|
||||||
|
|
||||||
// Start server
|
// Start server
|
||||||
server.begin();
|
server.begin();
|
||||||
if (!MDNS.begin(HOSTNAME))
|
if (!MDNS.begin(getMyHostname()))
|
||||||
{
|
{
|
||||||
Serial.println(F("Error setting up MDNS responder!"));
|
Serial.println(F("Error setting up MDNS responder!"));
|
||||||
while (1)
|
while (1)
|
||||||
|
@ -61,13 +61,16 @@ void setupWebserver()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MDNS.addService("http", "tcp", 80);
|
MDNS.addService("http", "tcp", 80);
|
||||||
|
MDNS.addServiceTxt("http", "tcp", "model", "BTClock");
|
||||||
|
MDNS.addServiceTxt("http", "tcp", "version", "2.0");
|
||||||
|
MDNS.addServiceTxt("http", "tcp", "rev", GIT_REV);
|
||||||
Serial.println(F("Webserver should be running"));
|
Serial.println(F("Webserver should be running"));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Api
|
* @Api
|
||||||
* @Path("/api/status")
|
* @Path("/api/status")
|
||||||
*/
|
*/
|
||||||
void onApiStatus(AsyncWebServerRequest *request)
|
void onApiStatus(AsyncWebServerRequest *request)
|
||||||
{
|
{
|
||||||
AsyncResponseStream *response = request->beginResponseStream("application/json");
|
AsyncResponseStream *response = request->beginResponseStream("application/json");
|
||||||
|
@ -110,7 +113,7 @@ void onApiStatus(AsyncWebServerRequest *request)
|
||||||
/**
|
/**
|
||||||
* @Api
|
* @Api
|
||||||
* @Path("/api/action/pause")
|
* @Path("/api/action/pause")
|
||||||
*/
|
*/
|
||||||
void onApiActionPause(AsyncWebServerRequest *request)
|
void onApiActionPause(AsyncWebServerRequest *request)
|
||||||
{
|
{
|
||||||
timerRunning = false;
|
timerRunning = false;
|
||||||
|
@ -122,7 +125,7 @@ void onApiActionPause(AsyncWebServerRequest *request)
|
||||||
/**
|
/**
|
||||||
* @Api
|
* @Api
|
||||||
* @Path("/api/action/full_refresh")
|
* @Path("/api/action/full_refresh")
|
||||||
*/
|
*/
|
||||||
void onApiFullRefresh(AsyncWebServerRequest *request)
|
void onApiFullRefresh(AsyncWebServerRequest *request)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -134,7 +137,7 @@ void onApiFullRefresh(AsyncWebServerRequest *request)
|
||||||
/**
|
/**
|
||||||
* @Api
|
* @Api
|
||||||
* @Path("/api/action/timer_restart")
|
* @Path("/api/action/timer_restart")
|
||||||
*/
|
*/
|
||||||
void onApiActionTimerRestart(AsyncWebServerRequest *request)
|
void onApiActionTimerRestart(AsyncWebServerRequest *request)
|
||||||
{
|
{
|
||||||
// moment = millis();
|
// moment = millis();
|
||||||
|
@ -148,7 +151,7 @@ void onApiActionTimerRestart(AsyncWebServerRequest *request)
|
||||||
* @Api
|
* @Api
|
||||||
* @Path("/api/action/update")
|
* @Path("/api/action/update")
|
||||||
* @Parameter int rate Time in minutes
|
* @Parameter int rate Time in minutes
|
||||||
*/
|
*/
|
||||||
void onApiActionUpdate(AsyncWebServerRequest *request)
|
void onApiActionUpdate(AsyncWebServerRequest *request)
|
||||||
{
|
{
|
||||||
if (request->hasParam("rate"))
|
if (request->hasParam("rate"))
|
||||||
|
@ -167,10 +170,10 @@ void onApiActionUpdate(AsyncWebServerRequest *request)
|
||||||
* @Api
|
* @Api
|
||||||
* @Method GET
|
* @Method GET
|
||||||
* @Path("/api/settings")
|
* @Path("/api/settings")
|
||||||
*/
|
*/
|
||||||
void onApiSettingsGet(AsyncWebServerRequest *request)
|
void onApiSettingsGet(AsyncWebServerRequest *request)
|
||||||
{
|
{
|
||||||
StaticJsonDocument<768> root;
|
StaticJsonDocument<1536> root;
|
||||||
root["numScreens"] = NUM_SCREENS;
|
root["numScreens"] = NUM_SCREENS;
|
||||||
root["fgColor"] = getFgColor();
|
root["fgColor"] = getFgColor();
|
||||||
root["bgColor"] = getBgColor();
|
root["bgColor"] = getBgColor();
|
||||||
|
@ -184,7 +187,9 @@ void onApiSettingsGet(AsyncWebServerRequest *request)
|
||||||
root["rpcUser"] = preferences.getString("rpcUser", BITCOIND_RPC_USER);
|
root["rpcUser"] = preferences.getString("rpcUser", BITCOIND_RPC_USER);
|
||||||
root["rpcHost"] = preferences.getString("rpcHost", BITCOIND_HOST);
|
root["rpcHost"] = preferences.getString("rpcHost", BITCOIND_HOST);
|
||||||
root["mempoolInstance"] = preferences.getString("mempoolInstance", DEFAULT_MEMPOOL_INSTANCE);
|
root["mempoolInstance"] = preferences.getString("mempoolInstance", DEFAULT_MEMPOOL_INSTANCE);
|
||||||
|
root["hostnamePrefix"] = preferences.getString("hostnamePrefix", "btclock");
|
||||||
|
root["hostname"] = getMyHostname();
|
||||||
|
|
||||||
#ifdef IS_BW
|
#ifdef IS_BW
|
||||||
root["epdColors"] = 2;
|
root["epdColors"] = 2;
|
||||||
#else
|
#else
|
||||||
|
@ -212,7 +217,7 @@ void onApiSettingsGet(AsyncWebServerRequest *request)
|
||||||
|
|
||||||
AsyncResponseStream *response = request->beginResponseStream("application/json");
|
AsyncResponseStream *response = request->beginResponseStream("application/json");
|
||||||
serializeJson(root, *response);
|
serializeJson(root, *response);
|
||||||
|
|
||||||
request->send(response);
|
request->send(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -290,6 +295,14 @@ void onApiSettingsPost(AsyncWebServerRequest *request)
|
||||||
settingsChanged = true;
|
settingsChanged = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (request->hasParam("hostnamePrefix", true))
|
||||||
|
{
|
||||||
|
AsyncWebParameter *hostnamePrefix = request->getParam("hostnamePrefix", true);
|
||||||
|
|
||||||
|
preferences.putString("hostnamePrefix", hostnamePrefix->value().c_str());
|
||||||
|
settingsChanged = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (request->hasParam("ledBrightness", true))
|
if (request->hasParam("ledBrightness", true))
|
||||||
{
|
{
|
||||||
AsyncWebParameter *ledBrightness = request->getParam("ledBrightness", true);
|
AsyncWebParameter *ledBrightness = request->getParam("ledBrightness", true);
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#include "screens/ticker.hpp"
|
#include "screens/ticker.hpp"
|
||||||
#include "screens/time.hpp"
|
#include "screens/time.hpp"
|
||||||
#include "screens/halvingcountdown.hpp"
|
#include "screens/halvingcountdown.hpp"
|
||||||
|
#include "screens/market_cap.hpp"
|
||||||
|
|
||||||
#include "tasks/ha.hpp"
|
#include "tasks/ha.hpp"
|
||||||
#include "tasks/epd.hpp"
|
#include "tasks/epd.hpp"
|
||||||
|
@ -62,7 +63,7 @@ void setup()
|
||||||
BlockHeightScreen::init();
|
BlockHeightScreen::init();
|
||||||
HalvingCountdownScreen::init();
|
HalvingCountdownScreen::init();
|
||||||
TickerScreen::init();
|
TickerScreen::init();
|
||||||
// SatsPerDollarScreen::init();
|
MarketCapScreen::init();
|
||||||
|
|
||||||
#ifdef WITH_BUTTONS
|
#ifdef WITH_BUTTONS
|
||||||
setupButtonTask();
|
setupButtonTask();
|
||||||
|
@ -77,15 +78,15 @@ void setup()
|
||||||
registerNewBlockCallback(BlockHeightScreen::onNewBlock);
|
registerNewBlockCallback(BlockHeightScreen::onNewBlock);
|
||||||
registerNewBlockCallback(HalvingCountdownScreen::onNewBlock);
|
registerNewBlockCallback(HalvingCountdownScreen::onNewBlock);
|
||||||
registerNewPriceCallback(TickerScreen::onPriceUpdate);
|
registerNewPriceCallback(TickerScreen::onPriceUpdate);
|
||||||
// registerNewPriceCallback(SatsPerDollarScreen::onPriceUpdate);
|
|
||||||
|
|
||||||
setupDisplays();
|
setupDisplays();
|
||||||
} else {
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
setupI2C();
|
setupI2C();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void loop()
|
void loop()
|
||||||
{
|
{
|
||||||
// put your main code here, to run repeatedly:
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,4 +57,8 @@ std::array<String, NUM_SCREENS> BlockHeightScreen::getEpdContent()
|
||||||
// std::copy(std::begin(BlockHeightScreen::epdContent), std::end(BlockHeightScreen::epdContent), std::begin(ret));
|
// std::copy(std::begin(BlockHeightScreen::epdContent), std::end(BlockHeightScreen::epdContent), std::begin(ret));
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint BlockHeightScreen::getBlockNr() {
|
||||||
|
return blockNr;
|
||||||
}
|
}
|
|
@ -17,4 +17,5 @@ public:
|
||||||
static void showScreen();
|
static void showScreen();
|
||||||
static void onNewBlock(uint blockNr);
|
static void onNewBlock(uint blockNr);
|
||||||
static std::array<String, NUM_SCREENS> getEpdContent();
|
static std::array<String, NUM_SCREENS> getEpdContent();
|
||||||
|
static uint getBlockNr();
|
||||||
};
|
};
|
30
src/screens/market_cap.cpp
Normal file
30
src/screens/market_cap.cpp
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
#include "market_cap.hpp"
|
||||||
|
|
||||||
|
uint MarketCapScreen::satsPerDollar = 0;
|
||||||
|
std::array<String, NUM_SCREENS> MarketCapScreen::epdContent = {"", "", "", "", "", "", ""};
|
||||||
|
|
||||||
|
void MarketCapScreen::init()
|
||||||
|
{
|
||||||
|
// Dependent on price and blocks
|
||||||
|
MarketCapScreen::showScreen();
|
||||||
|
}
|
||||||
|
|
||||||
|
void MarketCapScreen::showScreen()
|
||||||
|
{
|
||||||
|
double supply = getSupplyAtBlock(BlockHeightScreen::getBlockNr());
|
||||||
|
int64_t marketCap = static_cast<std::int64_t>(supply * double(TickerScreen::getPrice()));
|
||||||
|
|
||||||
|
std::string priceString = "$" + formatNumberWithSuffix(marketCap);
|
||||||
|
priceString.insert(priceString.begin(), NUM_SCREENS - priceString.length(), ' ');
|
||||||
|
|
||||||
|
epdContent[0] = "USD/MCAP";
|
||||||
|
for (uint i = 1; i < NUM_SCREENS; i++)
|
||||||
|
{
|
||||||
|
MarketCapScreen::epdContent[i] = priceString[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
std::array<String, NUM_SCREENS> MarketCapScreen::getEpdContent()
|
||||||
|
{
|
||||||
|
return MarketCapScreen::epdContent;
|
||||||
|
}
|
20
src/screens/market_cap.hpp
Normal file
20
src/screens/market_cap.hpp
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "base.hpp"
|
||||||
|
#include "config.h"
|
||||||
|
#include "shared.hpp"
|
||||||
|
#include "lib/utils.hpp"
|
||||||
|
#include "blockheight.hpp";
|
||||||
|
#include "ticker.hpp";
|
||||||
|
#include "tasks/epd.hpp"
|
||||||
|
|
||||||
|
class MarketCapScreen {
|
||||||
|
protected:
|
||||||
|
static uint satsPerDollar;
|
||||||
|
static std::array<String, NUM_SCREENS> epdContent;
|
||||||
|
public:
|
||||||
|
static void init();
|
||||||
|
static void showScreen();
|
||||||
|
static void onPriceUpdate(uint price);
|
||||||
|
static std::array<String, NUM_SCREENS> getEpdContent();
|
||||||
|
};
|
|
@ -1,30 +0,0 @@
|
||||||
// #include "sats_per_dollar.hpp"
|
|
||||||
|
|
||||||
// uint SatsPerDollarScreen::satsPerDollar = 0;
|
|
||||||
// std::array<String, NUM_SCREENS> SatsPerDollarScreen::epdContent = { "", "", "", "", "", "", "" };
|
|
||||||
|
|
||||||
// void SatsPerDollarScreen::init() {
|
|
||||||
// SatsPerDollarScreen::satsPerDollar = int(round(1 / preferences.getFloat("btcPrice", 12345) * 10e7));
|
|
||||||
// setupGetPriceTask();
|
|
||||||
// SatsPerDollarScreen::showScreen();
|
|
||||||
// }
|
|
||||||
|
|
||||||
// void SatsPerDollarScreen::showScreen() {
|
|
||||||
// std::string satsPerDollarString = String(SatsPerDollarScreen::satsPerDollar).c_str();
|
|
||||||
// satsPerDollarString.insert(satsPerDollarString.begin(), 7 - satsPerDollarString.length(), ' ');
|
|
||||||
// epdContent[0] = "MSCW/TIME";
|
|
||||||
// for (uint i = 1; i < NUM_SCREENS; i++)
|
|
||||||
// {
|
|
||||||
// SatsPerDollarScreen::epdContent[i] = satsPerDollarString[i];
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// void SatsPerDollarScreen::onPriceUpdate(uint price) {
|
|
||||||
// SatsPerDollarScreen::satsPerDollar = int(round(1 / float(price) * 10e7));
|
|
||||||
|
|
||||||
// SatsPerDollarScreen::showScreen();
|
|
||||||
// }
|
|
||||||
|
|
||||||
// std::array<String, NUM_SCREENS> SatsPerDollarScreen::getEpdContent() {
|
|
||||||
// return SatsPerDollarScreen::epdContent;
|
|
||||||
// }
|
|
|
@ -1,17 +0,0 @@
|
||||||
// #pragma once
|
|
||||||
|
|
||||||
// #include "base.hpp"
|
|
||||||
// #include "config.h"
|
|
||||||
// #include "shared.hpp"
|
|
||||||
// #include "tasks/epd.hpp"
|
|
||||||
|
|
||||||
// class SatsPerDollarScreen {
|
|
||||||
// protected:
|
|
||||||
// static uint satsPerDollar;
|
|
||||||
// static std::array<String, NUM_SCREENS> epdContent;
|
|
||||||
// public:
|
|
||||||
// static void init();
|
|
||||||
// static void showScreen();
|
|
||||||
// static void onPriceUpdate(uint price);
|
|
||||||
// static std::array<String, NUM_SCREENS> getEpdContent();
|
|
||||||
// };
|
|
|
@ -48,4 +48,8 @@ std::array<String, NUM_SCREENS> TickerScreen::getEpdContentSats() {
|
||||||
|
|
||||||
|
|
||||||
return epdContentSats;
|
return epdContentSats;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint TickerScreen::getPrice() {
|
||||||
|
return price;
|
||||||
}
|
}
|
|
@ -18,4 +18,5 @@ public:
|
||||||
static void onPriceUpdate(uint price);
|
static void onPriceUpdate(uint price);
|
||||||
static std::array<String, NUM_SCREENS> getEpdContent();
|
static std::array<String, NUM_SCREENS> getEpdContent();
|
||||||
static std::array<String, NUM_SCREENS> getEpdContentSats();
|
static std::array<String, NUM_SCREENS> getEpdContentSats();
|
||||||
|
static uint getPrice();
|
||||||
};
|
};
|
|
@ -55,9 +55,11 @@ const PROGMEM int SCREEN_MSCW_TIME = 1;
|
||||||
const PROGMEM int SCREEN_BTC_TICKER = 2;
|
const PROGMEM int SCREEN_BTC_TICKER = 2;
|
||||||
const PROGMEM int SCREEN_TIME = 3;
|
const PROGMEM int SCREEN_TIME = 3;
|
||||||
const PROGMEM int SCREEN_HALVING_COUNTDOWN = 4;
|
const PROGMEM int SCREEN_HALVING_COUNTDOWN = 4;
|
||||||
|
const PROGMEM int SCREEN_MARKET_CAP = 5;
|
||||||
|
|
||||||
const PROGMEM int SCREEN_COUNTDOWN = 98;
|
const PROGMEM int SCREEN_COUNTDOWN = 98;
|
||||||
const PROGMEM int SCREEN_CUSTOM = 99;
|
const PROGMEM int SCREEN_CUSTOM = 99;
|
||||||
const PROGMEM int screens[5] = { SCREEN_BLOCK_HEIGHT, SCREEN_MSCW_TIME, SCREEN_BTC_TICKER, SCREEN_TIME, SCREEN_HALVING_COUNTDOWN };
|
const PROGMEM int screens[6] = { SCREEN_BLOCK_HEIGHT, SCREEN_MSCW_TIME, SCREEN_BTC_TICKER, SCREEN_TIME, SCREEN_HALVING_COUNTDOWN, SCREEN_MARKET_CAP };
|
||||||
|
|
||||||
const uint screenCount = sizeof(screens) / sizeof(int);
|
const uint screenCount = sizeof(screens) / sizeof(int);
|
||||||
|
|
||||||
|
|
|
@ -82,6 +82,9 @@ void checkBitcoinBlock(void *pvParameters)
|
||||||
Serial.print(F("Error in HTTP request to mempool API: "));
|
Serial.print(F("Error in HTTP request to mempool API: "));
|
||||||
Serial.print(httpCode);
|
Serial.print(httpCode);
|
||||||
Serial.println(http->errorToString(httpCode));
|
Serial.println(http->errorToString(httpCode));
|
||||||
|
if (httpCode == -1) {
|
||||||
|
WiFi.reconnect();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
http->end();
|
http->end();
|
||||||
|
|
|
@ -3,71 +3,70 @@
|
||||||
* Button 2: Next Screen
|
* Button 2: Next Screen
|
||||||
* Button 3: Previous Screen
|
* Button 3: Previous Screen
|
||||||
* Button 4: Queue full EPD update
|
* Button 4: Queue full EPD update
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "button.hpp"
|
#include "button.hpp"
|
||||||
#ifndef NO_MCP
|
#ifndef NO_MCP
|
||||||
TaskHandle_t buttonTaskHandle = NULL;
|
TaskHandle_t buttonTaskHandle = NULL;
|
||||||
// Define a type for the event callback
|
|
||||||
std::vector<EventCallback> buttonEventCallbacks; // Define a vector to hold multiple event callbacks
|
std::vector<EventCallback> buttonEventCallbacks; // Define a vector to hold multiple event callbacks
|
||||||
volatile boolean buttonPressed = false;
|
const TickType_t debounceDelay = pdMS_TO_TICKS(50);
|
||||||
|
TickType_t lastDebounceTime = 0;
|
||||||
|
|
||||||
void buttonTask(void *parameter)
|
void buttonTask(void *parameter)
|
||||||
{
|
{
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
if (!digitalRead(MCP_INT_PIN))
|
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
|
||||||
|
TickType_t currentTime = xTaskGetTickCount();
|
||||||
|
if ((currentTime - lastDebounceTime) >= debounceDelay)
|
||||||
{
|
{
|
||||||
uint pin = mcp.getLastInterruptPin();
|
lastDebounceTime = currentTime;
|
||||||
if (pin == 3) {
|
|
||||||
// xTaskCreate(fullRefresh, "FullRefresh", 2048, NULL, 1, NULL);
|
|
||||||
toggleScreenTimer();
|
|
||||||
}
|
|
||||||
else if (pin == 1)
|
|
||||||
{
|
|
||||||
previousScreen();
|
|
||||||
}
|
|
||||||
else if (pin == 2)
|
|
||||||
{
|
|
||||||
nextScreen();
|
|
||||||
}
|
|
||||||
else if (pin == 0)
|
|
||||||
{
|
|
||||||
showNetworkSettings();
|
|
||||||
}
|
|
||||||
|
|
||||||
vTaskDelay(250); // debounce
|
if (!digitalRead(MCP_INT_PIN))
|
||||||
mcp.clearInterrupts(); // clear
|
{
|
||||||
|
uint pin = mcp.getLastInterruptPin();
|
||||||
|
|
||||||
|
switch (pin)
|
||||||
|
{
|
||||||
|
case 3:
|
||||||
|
toggleScreenTimer();
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
nextScreen();
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
previousScreen();
|
||||||
|
break;
|
||||||
|
case 0:
|
||||||
|
showNetworkSettings();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
mcp.clearInterrupts();
|
||||||
|
// Very ugly, but for some reason this is necessary
|
||||||
|
while (!digitalRead(MCP_INT_PIN))
|
||||||
|
{
|
||||||
|
mcp.clearInterrupts();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
vTaskDelay(pdMS_TO_TICKS(250));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void IRAM_ATTR handleButtonInterrupt()
|
void IRAM_ATTR handleButtonInterrupt()
|
||||||
{
|
{
|
||||||
buttonPressed = true;
|
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
|
||||||
// Serial.println(F("ISR"));
|
xTaskNotifyFromISR(buttonTaskHandle, 0, eNoAction, &xHigherPriorityTaskWoken);
|
||||||
// uint pin = mcp.getLastInterruptPin();
|
if (xHigherPriorityTaskWoken == pdTRUE)
|
||||||
|
{
|
||||||
// if (pin == 1)
|
portYIELD_FROM_ISR();
|
||||||
// {
|
}
|
||||||
// nextScreen();
|
|
||||||
// }
|
|
||||||
// else if (pin == 2)
|
|
||||||
// {
|
|
||||||
// previousScreen();
|
|
||||||
// }
|
|
||||||
// vTaskDelay(pdMS_TO_TICKS(250));
|
|
||||||
|
|
||||||
// mcp.clearInterrupts();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void setupButtonTask()
|
void setupButtonTask()
|
||||||
{
|
{
|
||||||
xTaskCreate(buttonTask, "ButtonTask", 4096, NULL, 1, &buttonTaskHandle); // Create the FreeRTOS task
|
xTaskCreate(buttonTask, "ButtonTask", 4096, NULL, 1, &buttonTaskHandle); // Create the FreeRTOS task
|
||||||
// Use interrupt instead of task
|
// Use interrupt instead of task
|
||||||
// attachInterrupt(MCP_INT_PIN, handleButtonInterrupt, FALLING);
|
attachInterrupt(MCP_INT_PIN, handleButtonInterrupt, CHANGE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void registerNewButtonCallback(const EventCallback cb)
|
void registerNewButtonCallback(const EventCallback cb)
|
||||||
|
|
|
@ -1,28 +1,57 @@
|
||||||
#include "epd.hpp"
|
#include "epd.hpp"
|
||||||
|
|
||||||
#ifdef IS_S3
|
#ifdef IS_S3
|
||||||
|
#ifdef USE_UNIVERSAL_PIN
|
||||||
Native_Pin EPD_CS[NUM_SCREENS] = {
|
Native_Pin EPD_CS[NUM_SCREENS] = {
|
||||||
Native_Pin(2), Native_Pin(4), Native_Pin(6), Native_Pin(10), Native_Pin(33), Native_Pin(21), Native_Pin(17),
|
Native_Pin(2),
|
||||||
#if NUM_SCREENS == 9
|
Native_Pin(4),
|
||||||
|
Native_Pin(6),
|
||||||
|
Native_Pin(10),
|
||||||
|
Native_Pin(33),
|
||||||
|
Native_Pin(21),
|
||||||
|
Native_Pin(17),
|
||||||
|
#if NUM_SCREENS == 9
|
||||||
|
// MCP23X17_Pin(mcp2, 7),
|
||||||
Native_Pin(-1),
|
Native_Pin(-1),
|
||||||
Native_Pin(-1),
|
Native_Pin(-1),
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
Native_Pin EPD_BUSY[NUM_SCREENS] = {
|
Native_Pin EPD_BUSY[NUM_SCREENS] = {
|
||||||
Native_Pin(3), Native_Pin(5), Native_Pin(7), Native_Pin(9), Native_Pin(37), Native_Pin(18), Native_Pin(16),
|
Native_Pin(3),
|
||||||
#if NUM_SCREENS == 9
|
Native_Pin(5),
|
||||||
|
Native_Pin(7),
|
||||||
|
Native_Pin(9),
|
||||||
|
Native_Pin(37),
|
||||||
|
Native_Pin(18),
|
||||||
|
Native_Pin(16),
|
||||||
|
#if NUM_SCREENS == 9
|
||||||
|
// MCP23X17_Pin(mcp2, 6),
|
||||||
Native_Pin(-1),
|
Native_Pin(-1),
|
||||||
Native_Pin(-1),
|
Native_Pin(-1),
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
MCP23X17_Pin EPD_RESET_MPD[NUM_SCREENS] = {
|
MCP23X17_Pin EPD_RESET_MPD[NUM_SCREENS] = {
|
||||||
MCP23X17_Pin(mcp, 8), MCP23X17_Pin(mcp, 9), MCP23X17_Pin(mcp, 10), MCP23X17_Pin(mcp, 11), MCP23X17_Pin(mcp, 12), MCP23X17_Pin(mcp, 13), MCP23X17_Pin(mcp, 14),
|
MCP23X17_Pin(mcp, 8),
|
||||||
#if NUM_SCREENS == 9
|
MCP23X17_Pin(mcp, 9),
|
||||||
MCP23X17_Pin(mcp, 15),
|
MCP23X17_Pin(mcp, 10),
|
||||||
MCP23X17_Pin(mcp, 16)
|
MCP23X17_Pin(mcp, 11),
|
||||||
#endif
|
MCP23X17_Pin(mcp, 12),
|
||||||
|
MCP23X17_Pin(mcp, 13),
|
||||||
|
MCP23X17_Pin(mcp, 14),
|
||||||
|
#if NUM_SCREENS == 9
|
||||||
|
MCP23X17_Pin(mcp2, 2),
|
||||||
|
MCP23X17_Pin(mcp2, 5),
|
||||||
|
// MCP23X17_Pin(mcp, 15),
|
||||||
|
// MCP23X17_Pin(mcp, 16)
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if NUM_SCREENS == 9
|
||||||
|
MCP23X17_Pin EPD8_BUSY = MCP23X17_Pin(mcp2, 3);
|
||||||
|
MCP23X17_Pin EPD8_CS = MCP23X17_Pin(mcp2, 4);
|
||||||
|
MCP23X17_Pin EPD9_BUSY = MCP23X17_Pin(mcp2, 6);
|
||||||
|
MCP23X17_Pin EPD9_CS = MCP23X17_Pin(mcp2, 7);
|
||||||
|
#endif
|
||||||
Native_Pin EPD_DC = Native_Pin(14);
|
Native_Pin EPD_DC = Native_Pin(14);
|
||||||
|
|
||||||
GxEPD2_BW<GxEPD2_213_B74, GxEPD2_213_B74::HEIGHT> displays[NUM_SCREENS] = {
|
GxEPD2_BW<GxEPD2_213_B74, GxEPD2_213_B74::HEIGHT> displays[NUM_SCREENS] = {
|
||||||
|
@ -33,12 +62,30 @@ GxEPD2_BW<GxEPD2_213_B74, GxEPD2_213_B74::HEIGHT> displays[NUM_SCREENS] = {
|
||||||
GxEPD2_213_B74(&EPD_CS[4], &EPD_DC, &EPD_RESET_MPD[4], &EPD_BUSY[4]),
|
GxEPD2_213_B74(&EPD_CS[4], &EPD_DC, &EPD_RESET_MPD[4], &EPD_BUSY[4]),
|
||||||
GxEPD2_213_B74(&EPD_CS[5], &EPD_DC, &EPD_RESET_MPD[5], &EPD_BUSY[5]),
|
GxEPD2_213_B74(&EPD_CS[5], &EPD_DC, &EPD_RESET_MPD[5], &EPD_BUSY[5]),
|
||||||
GxEPD2_213_B74(&EPD_CS[6], &EPD_DC, &EPD_RESET_MPD[6], &EPD_BUSY[6]),
|
GxEPD2_213_B74(&EPD_CS[6], &EPD_DC, &EPD_RESET_MPD[6], &EPD_BUSY[6]),
|
||||||
#if NUM_SCREENS == 9
|
#if NUM_SCREENS == 9
|
||||||
GxEPD2_213_B74(&EPD_CS[7], &EPD_DC, &EPD_RESET_MPD[7], &EPD_BUSY[7]),
|
GxEPD2_213_B74(&EPD8_CS, &EPD_DC, &EPD_RESET_MPD[7], &EPD8_BUSY),
|
||||||
GxEPD2_213_B74(&EPD_CS[8], &EPD_DC, &EPD_RESET_MPD[8], &EPD_BUSY[8]),
|
GxEPD2_213_B74(&EPD9_CS, &EPD_DC, &EPD_RESET_MPD[8], &EPD9_BUSY),
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
#else
|
||||||
|
// Non Universal Pin
|
||||||
|
const char EPD_CS[NUM_SCREENS] = {2, 4, 6, 10, 33, 21, 17};
|
||||||
|
const char EPD_BUSY[NUM_SCREENS] = {3, 5, 7, 9, 37, 18, 16};
|
||||||
|
const char EPD_RESET_MPD[NUM_SCREENS] = {8, 9, 10, 11, 12, 13, 14};
|
||||||
|
|
||||||
|
const char EPD_DC = 14;
|
||||||
|
const char RST_PIN = 15;
|
||||||
|
|
||||||
|
GxEPD2_BW<GxEPD2_213_B74, GxEPD2_213_B74::HEIGHT> displays[NUM_SCREENS] = {
|
||||||
|
GxEPD2_213_B74(EPD_CS[0], EPD_DC, /*RST=*/-1, EPD_BUSY[0]),
|
||||||
|
GxEPD2_213_B74(EPD_CS[1], EPD_DC, /*RST=*/-1, EPD_BUSY[1]),
|
||||||
|
GxEPD2_213_B74(EPD_CS[2], EPD_DC, /*RST=*/-1, EPD_BUSY[2]),
|
||||||
|
GxEPD2_213_B74(EPD_CS[3], EPD_DC, /*RST=*/-1, EPD_BUSY[3]),
|
||||||
|
GxEPD2_213_B74(EPD_CS[4], EPD_DC, /*RST=*/-1, EPD_BUSY[4]),
|
||||||
|
GxEPD2_213_B74(EPD_CS[5], EPD_DC, /*RST=*/-1, EPD_BUSY[5]),
|
||||||
|
GxEPD2_213_B74(EPD_CS[6], EPD_DC, /*RST=*/-1, EPD_BUSY[6]),
|
||||||
|
};
|
||||||
|
#endif
|
||||||
const int SEM_WAIT_TIME = 10000;
|
const int SEM_WAIT_TIME = 10000;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -57,9 +104,21 @@ void setupDisplays()
|
||||||
|
|
||||||
void initDisplays()
|
void initDisplays()
|
||||||
{
|
{
|
||||||
|
#ifndef USE_UNIVERSAL_PIN
|
||||||
|
resetAllDisplays();
|
||||||
|
#endif
|
||||||
|
|
||||||
for (uint i = 0; i < NUM_SCREENS; i++)
|
for (uint i = 0; i < NUM_SCREENS; i++)
|
||||||
{
|
{
|
||||||
|
#ifndef USE_UNIVERSAL_PIN
|
||||||
|
mcp.pinMode(EPD_RESET_MPD[i], OUTPUT);
|
||||||
|
#endif
|
||||||
|
|
||||||
displays[i].init();
|
displays[i].init();
|
||||||
|
|
||||||
|
#ifndef USE_UNIVERSAL_PIN
|
||||||
|
resetSingleDisplay(i);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
for (uint i = 0; i < NUM_SCREENS; i++)
|
for (uint i = 0; i < NUM_SCREENS; i++)
|
||||||
|
@ -74,7 +133,19 @@ void initDisplays()
|
||||||
xTaskCreate(updateDisplay, "EpdUpd" + char(i), 4096, taskParam, 1, &tasks[i]); // create task
|
xTaskCreate(updateDisplay, "EpdUpd" + char(i), 4096, taskParam, 1, &tasks[i]); // create task
|
||||||
// delay(1000);
|
// delay(1000);
|
||||||
}
|
}
|
||||||
epdContent = {"B", "T", "C", "L", "O", "C", "K"};
|
epdContent = { "B",
|
||||||
|
"T",
|
||||||
|
"C",
|
||||||
|
"L",
|
||||||
|
"O",
|
||||||
|
"C",
|
||||||
|
"K"
|
||||||
|
#if NUM_SCREENS == 9
|
||||||
|
,
|
||||||
|
"0",
|
||||||
|
"9"
|
||||||
|
#endif
|
||||||
|
};
|
||||||
for (uint i = 0; i < NUM_SCREENS; i++)
|
for (uint i = 0; i < NUM_SCREENS; i++)
|
||||||
{
|
{
|
||||||
xTaskNotifyGive(tasks[i]);
|
xTaskNotifyGive(tasks[i]);
|
||||||
|
@ -82,6 +153,24 @@ void initDisplays()
|
||||||
vTaskDelay(pdMS_TO_TICKS(displays[0].epd2.full_refresh_time));
|
vTaskDelay(pdMS_TO_TICKS(displays[0].epd2.full_refresh_time));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void resetAllDisplays()
|
||||||
|
{
|
||||||
|
for (int i = 0; i < NUM_SCREENS; i++)
|
||||||
|
{
|
||||||
|
resetSingleDisplay(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void resetSingleDisplay(int i)
|
||||||
|
{
|
||||||
|
mcp.digitalWrite(EPD_RESET_MPD[i], HIGH);
|
||||||
|
delay(20);
|
||||||
|
mcp.digitalWrite(EPD_RESET_MPD[i], LOW);
|
||||||
|
delay(20);
|
||||||
|
mcp.digitalWrite(EPD_RESET_MPD[i], HIGH);
|
||||||
|
delay(200);
|
||||||
|
}
|
||||||
|
|
||||||
void taskEpd(void *pvParameters)
|
void taskEpd(void *pvParameters)
|
||||||
{
|
{
|
||||||
while (1)
|
while (1)
|
||||||
|
@ -103,6 +192,9 @@ void taskEpd(void *pvParameters)
|
||||||
case SCREEN_HALVING_COUNTDOWN:
|
case SCREEN_HALVING_COUNTDOWN:
|
||||||
epdContent = HalvingCountdownScreen::getEpdContent();
|
epdContent = HalvingCountdownScreen::getEpdContent();
|
||||||
break;
|
break;
|
||||||
|
case SCREEN_MARKET_CAP:
|
||||||
|
epdContent = MarketCapScreen::getEpdContent();
|
||||||
|
break;
|
||||||
case SCREEN_COUNTDOWN:
|
case SCREEN_COUNTDOWN:
|
||||||
epdContent = CountdownScreen::getEpdContent();
|
epdContent = CountdownScreen::getEpdContent();
|
||||||
break;
|
break;
|
||||||
|
@ -214,6 +306,8 @@ void showDigit(const uint dispNum, char chr, bool partial, const GFXfont *font)
|
||||||
|
|
||||||
void fullRefresh(void *pvParameters)
|
void fullRefresh(void *pvParameters)
|
||||||
{
|
{
|
||||||
|
resetAllDisplays();
|
||||||
|
|
||||||
for (uint i = 0; i < NUM_SCREENS; i++)
|
for (uint i = 0; i < NUM_SCREENS; i++)
|
||||||
{
|
{
|
||||||
lastFullRefresh[i] = NULL;
|
lastFullRefresh[i] = NULL;
|
||||||
|
@ -222,7 +316,7 @@ void fullRefresh(void *pvParameters)
|
||||||
vTaskDelete(NULL);
|
vTaskDelete(NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void updateDisplay(void *pvParameters)
|
extern "C" void updateDisplay(void *pvParameters) noexcept
|
||||||
{
|
{
|
||||||
const int epdIndex = *(int *)pvParameters;
|
const int epdIndex = *(int *)pvParameters;
|
||||||
delete (int *)pvParameters;
|
delete (int *)pvParameters;
|
||||||
|
@ -234,9 +328,11 @@ void updateDisplay(void *pvParameters)
|
||||||
|
|
||||||
if (epdContent[epdIndex].compareTo(currentEpdContent[epdIndex]) != 0)
|
if (epdContent[epdIndex].compareTo(currentEpdContent[epdIndex]) != 0)
|
||||||
{
|
{
|
||||||
currentEpdContent[epdIndex] = epdContent[epdIndex];
|
displays[epdIndex].init(0, false); // Little longer reset duration because of MCP
|
||||||
|
#ifndef USE_UNIVERSAL_PIN
|
||||||
|
resetSingleDisplay(epdIndex);
|
||||||
|
#endif
|
||||||
|
|
||||||
displays[epdIndex].init(0, false, 20); // Little longer reset duration because of MCP
|
|
||||||
bool updatePartial = true;
|
bool updatePartial = true;
|
||||||
|
|
||||||
// Full Refresh every half hour
|
// Full Refresh every half hour
|
||||||
|
@ -257,8 +353,26 @@ void updateDisplay(void *pvParameters)
|
||||||
showDigit(epdIndex, epdContent[epdIndex].c_str()[0], updatePartial, &FONT_BIG);
|
showDigit(epdIndex, epdContent[epdIndex].c_str()[0], updatePartial, &FONT_BIG);
|
||||||
}
|
}
|
||||||
|
|
||||||
displays[epdIndex].display(updatePartial);
|
#ifdef USE_UNIVERSAL_PIN
|
||||||
displays[epdIndex].hibernate();
|
char tries = 0;
|
||||||
|
while (tries < 3)
|
||||||
|
{
|
||||||
|
if (displays[epdIndex].displayWithReturn(updatePartial))
|
||||||
|
{
|
||||||
|
displays[epdIndex].hibernate();
|
||||||
|
currentEpdContent[epdIndex] = epdContent[epdIndex];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
delay(100);
|
||||||
|
tries++;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
displays[epdIndex].display(updatePartial);
|
||||||
|
displays[epdIndex].hibernate();
|
||||||
|
currentEpdContent[epdIndex] = epdContent[epdIndex];
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
xSemaphoreGive(epdUpdateSemaphore[epdIndex]);
|
xSemaphoreGive(epdUpdateSemaphore[epdIndex]);
|
||||||
|
|
|
@ -11,12 +11,17 @@
|
||||||
#include "screens/blockheight.hpp"
|
#include "screens/blockheight.hpp"
|
||||||
#include "screens/ticker.hpp"
|
#include "screens/ticker.hpp"
|
||||||
#include "screens/time.hpp"
|
#include "screens/time.hpp"
|
||||||
#include "screens/sats_per_dollar.hpp"
|
#include "screens/market_cap.hpp"
|
||||||
#include "screens/countdown.hpp"
|
#include "screens/countdown.hpp"
|
||||||
#include "screens/custom_text.hpp"
|
#include "screens/custom_text.hpp"
|
||||||
#include "screens/halvingcountdown.hpp"
|
#include "screens/halvingcountdown.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef USE_UNIVERSAL_PIN
|
||||||
#include <native_pin.hpp>
|
#include <native_pin.hpp>
|
||||||
#include <mcp23x17_pin.hpp>
|
#include <mcp23x17_pin.hpp>
|
||||||
|
#include <universal_pin.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <freertos/FreeRTOS.h>
|
#include <freertos/FreeRTOS.h>
|
||||||
#include <freertos/task.h>
|
#include <freertos/task.h>
|
||||||
|
@ -36,11 +41,13 @@ void taskEpd(void *pvParameters);
|
||||||
|
|
||||||
std::array<String, NUM_SCREENS> getCurrentEpdContent();
|
std::array<String, NUM_SCREENS> getCurrentEpdContent();
|
||||||
|
|
||||||
|
void resetAllDisplays();
|
||||||
|
void resetSingleDisplay(int i);
|
||||||
void setEpdContent(std::array<String, NUM_SCREENS> newEpdContent);
|
void setEpdContent(std::array<String, NUM_SCREENS> newEpdContent);
|
||||||
void splitText(const uint dispNum, String top, String bottom, bool partial);
|
void splitText(const uint dispNum, String top, String bottom, bool partial);
|
||||||
void showDigit(const uint dispNum, char chr, bool partial, const GFXfont *font);
|
void showDigit(const uint dispNum, char chr, bool partial, const GFXfont *font);
|
||||||
|
|
||||||
void refreshDisplay(void *pvParameters);
|
void refreshDisplay(void *pvParameters);
|
||||||
void fullRefresh(void *pvParameters);
|
void fullRefresh(void *pvParameters);
|
||||||
void updateDisplay(void *pvParameters);
|
extern "C" void updateDisplay(void *pvParameters) noexcept;
|
||||||
//void genQrCode(String text, uint8_t *qrcode[qrcodegen_BUFFER_LEN_MAX]);
|
//void genQrCode(String text, uint8_t *qrcode[qrcodegen_BUFFER_LEN_MAX]);
|
||||||
|
|
|
@ -56,6 +56,9 @@ void taskGetPrice(void *pvParameters)
|
||||||
{
|
{
|
||||||
Serial.print(F("Error retrieving BTC/USD price (CoinGecko). HTTP status code: "));
|
Serial.print(F("Error retrieving BTC/USD price (CoinGecko). HTTP status code: "));
|
||||||
Serial.println(httpCode);
|
Serial.println(httpCode);
|
||||||
|
if (httpCode == -1) {
|
||||||
|
WiFi.reconnect();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
@ -86,6 +89,9 @@ void taskGetPrice(void *pvParameters)
|
||||||
{
|
{
|
||||||
Serial.print(F("Error retrieving BTC/USD price (CoinDesk). HTTP status code: "));
|
Serial.print(F("Error retrieving BTC/USD price (CoinDesk). HTTP status code: "));
|
||||||
Serial.println(httpCode);
|
Serial.println(httpCode);
|
||||||
|
if (httpCode == -1) {
|
||||||
|
WiFi.reconnect();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,44 +1,59 @@
|
||||||
#include "minute.hpp"
|
#include "minute.hpp"
|
||||||
|
|
||||||
TaskHandle_t minuteTaskHandle = NULL;
|
TaskHandle_t minuteTaskHandle = NULL;
|
||||||
// Define a type for the event callback
|
// Define a type for the event callback
|
||||||
std::vector<EventCallback> minuteEventCallbacks; // Define a vector to hold multiple event callbacks
|
std::vector<EventCallback> minuteEventCallbacks; // Define a vector to hold multiple event callbacks
|
||||||
bool eventTriggered = false; // Initialize the event triggered flag to false
|
bool eventTriggered = false; // Initialize the event triggered flag to false
|
||||||
|
const int usPerMinute = 60 * 1000000;
|
||||||
|
|
||||||
void minuteTask(void * parameter) {
|
void minuteTask(void *parameter)
|
||||||
while(1) {
|
{
|
||||||
#ifdef IS_3C // wait 5 minutes in case of a 3 color screen otherwise it keeps refreshing
|
|
||||||
if(rtc.getMinute() % 5 == 0 && !eventTriggered) {
|
esp_timer_handle_t minuteTimer;
|
||||||
eventTriggered = true;
|
const esp_timer_create_args_t minuteTimerConfig = {
|
||||||
for(auto &callback : minuteEventCallbacks) { // Loop through all the event callbacks and call them
|
.callback = &minuteTimerISR,
|
||||||
callback();
|
.name = "minute_timer"};
|
||||||
}
|
|
||||||
|
esp_timer_create(&minuteTimerConfig, &minuteTimer);
|
||||||
|
|
||||||
|
time_t currentTime;
|
||||||
|
struct tm timeinfo;
|
||||||
|
time(¤tTime);
|
||||||
|
localtime_r(¤tTime, &timeinfo);
|
||||||
|
uint32_t secondsUntilNextMinute = 60 - timeinfo.tm_sec;
|
||||||
|
|
||||||
|
if (secondsUntilNextMinute > 0)
|
||||||
|
vTaskDelay(pdMS_TO_TICKS((secondsUntilNextMinute * 1000)));
|
||||||
|
|
||||||
|
esp_timer_start_periodic(minuteTimer, usPerMinute);
|
||||||
|
|
||||||
|
while (1)
|
||||||
|
{
|
||||||
|
for (auto &callback : minuteEventCallbacks)
|
||||||
|
{
|
||||||
|
callback();
|
||||||
}
|
}
|
||||||
if(rtc.getMinute() % 5 != 0 && eventTriggered) { // Reset the event triggered flag if the second is not 0
|
|
||||||
eventTriggered = false;
|
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
|
||||||
}
|
}
|
||||||
vTaskDelay(pdMS_TO_TICKS(1000)); // Sleep for 1000 milliseconds to avoid busy waiting
|
}
|
||||||
#else
|
|
||||||
if(rtc.getSecond() == 0 && !eventTriggered) {
|
void IRAM_ATTR minuteTimerISR(void *arg)
|
||||||
eventTriggered = true;
|
{
|
||||||
for(auto &callback : minuteEventCallbacks) { // Loop through all the event callbacks and call them
|
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
|
||||||
callback();
|
vTaskNotifyGiveFromISR(minuteTaskHandle, &xHigherPriorityTaskWoken);
|
||||||
}
|
if (xHigherPriorityTaskWoken == pdTRUE)
|
||||||
}
|
{
|
||||||
if(rtc.getSecond() != 0) { // Reset the event triggered flag if the second is not 0
|
portYIELD_FROM_ISR();
|
||||||
eventTriggered = false;
|
|
||||||
}
|
|
||||||
vTaskDelay(pdMS_TO_TICKS(1000)); // Sleep for 1000 milliseconds to avoid busy waiting
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void setupMinuteEvent()
|
void setupMinuteEvent()
|
||||||
{
|
{
|
||||||
xTaskCreate(minuteTask, "MinuteTask", 4096, NULL, 1, &minuteTaskHandle); // Create the FreeRTOS task
|
xTaskCreate(minuteTask, "MinuteTask", 4096, NULL, 1, &minuteTaskHandle); // Create the FreeRTOS task
|
||||||
}
|
}
|
||||||
|
|
||||||
void registerNewMinuteCallback(const EventCallback cb)
|
void registerNewMinuteCallback(const EventCallback cb)
|
||||||
{
|
{
|
||||||
minuteEventCallbacks.push_back(cb);
|
minuteEventCallbacks.push_back(cb);
|
||||||
}
|
}
|
|
@ -6,9 +6,13 @@
|
||||||
#include <freertos/task.h>
|
#include <freertos/task.h>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include "shared.hpp"
|
#include "shared.hpp"
|
||||||
|
#include <esp_timer.h>
|
||||||
|
#include <time.h>
|
||||||
|
|
||||||
extern TaskHandle_t minuteTaskHandle;
|
extern TaskHandle_t minuteTaskHandle;
|
||||||
|
|
||||||
void minuteTask(void *pvParameters);
|
void minuteTask(void *pvParameters);
|
||||||
void setupMinuteEvent();
|
void setupMinuteEvent();
|
||||||
|
void IRAM_ATTR minuteTimerISR(void* arg);
|
||||||
|
|
||||||
void registerNewMinuteCallback(const EventCallback cb);
|
void registerNewMinuteCallback(const EventCallback cb);
|
Loading…
Add table
Reference in a new issue