forked from btclock/btclock_v3
15 lines
337 B
C++
15 lines
337 B
C++
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
#include <HTTPClient.h>
|
|
|
|
#include "lib/config.hpp"
|
|
#include "lib/shared.hpp"
|
|
|
|
extern TaskHandle_t miningPoolStatsFetchTaskHandle;
|
|
|
|
void setupMiningPoolStatsFetchTask();
|
|
void taskMiningPoolStatsFetch(void *pvParameters);
|
|
|
|
std::string getMiningPoolStatsHashRate();
|
|
int getMiningPoolStatsDailyEarnings();
|