* Optimize Sun data calculation * Remove not required enum * Split config struct into different sub structs * Feature: Allow configuration of LWT QoS * Made resetreason methods static * Feature: Implement offset cache for "YieldDay" Thanks to @broth-itk for the idea! Fix: #1258 #1397 * Add Esp32-Stick-PoE-A * remove broken LilyGO_T_ETH_POE config, use device profile instead * Feature: High resolution Icon and PWA (Progressive Web App) functionality Fix: #1289 * webapp: Update dependencies * Initialize TaskScheduler * Migrate SunPosition to TaskScheduler * Migrate Datastore to TaskScheduler * Migrate MqttHandleInverterTotal to TaskSchedule * Migrate MqttHandleHass to TaskScheduler * Migrate MqttHandleDtu to TaskScheduler * Migrate MqttHandleInverter to TaskScheduler * Migrate LedSingle to TaskScheduler * Migrate NetworkSettings to TaskScheduler * Migrate InverterSettings to TaskScheduler * Migrate MessageOutput to TaskScheduler * Migrate Display_Graphic to TaskScheduler * Migrate WebApi to TaskScheduler * Split InverterSettings into multiple tasks * Calculate SunPosition only every 5 seconds * Split LedSingle into multiple tasks * Upgrade espMqttClient from 1.4.5 to 1.5.0 * Doc: Correct amount of MPP-Tracker * Added HMT-1600-4T and HMT-1800-4T to DevInfoParser Fix #1524 * Adjusted inverter names for HMS-1600/1800/2000-4T * Add channel count to description of detected inverter type (DevInfoParser) * Adjust device web api endpoint for dynamic led count * Feature: Added ability to change the brightness of the LEDs Based on the idea of @moritzlerch with several modifications like pwmTable and structure * webapp: Update dependencies * Update olikraus/U8g2 from 2.35.7 to 2.35.8 * Remove not required onWebsocketEvent * Remove code nesting * Introduce several const statements * Remove not required AsyncEventSource * Doc: Added byte specification to each command * Feature: Added basic Grid Profile parser which shows the used profile and version Other values are still outstanding. * Optimize AlarmLogParser to save memory * Add libfrozen to project to create constexpr maps * Feature: First version of GridProfile Parser which shows all values contained in the profile. * webapp: Update dependencies * Apply better variable names * Remove not required casts * Add additional compiler flags to prevent errors * Add const statement to several variables * Replace NULL by nullptr * Update bblanchon/ArduinoJson from 6.21.3 to 6.21.4 * Add const keyword to method parameters * Add const keyword to methods * Use references instead of pointers whenver possible * Adjust member variable names in MqttSettings * Adjust member variable names in NetworkSettings * webapp: Update timezone database to latest version * webapp: Beautify and unify form footers * Feature: Allow setting of an inverter limit of 0% and 0W Thanks to @madmartin in #1270 * Feature: Allow links in device profiles These links will be shown on the hardware settings page. * Doc: Added hint regarding HMS-xxxx-xT-NA inverters * Feature: Added DeviceProfile for CASmo-DTU Based on #1565 * Upgrade actions/upload-artifact from v3 to v4 * Upgrade actions/download-artifact from v3 to v4 * webapp: add app.js.gz * Gridprofileparser: Added latest known values Thanks to @stefan123t and @noone2k * webapp: Fix lint errors * Feature: Add DTU to Home Assistant Auto Discovery This is based on PR 1365 from @CFenner with several fixes and optimizations * Fix: Remove debug output as it floods the console * Fix: Gridprofileparser: Add additional error handling if profile is unknown * webapp: add app.js.gz * Fix: Offset cache for "YieldDay" did not work correctly * webapp: update dependencies * webapp: add app.js.gz * Fix: yarn.lock was outdated * Fix: yarn build error * Fix: Reset Yield day correction in combination with Zero Yield Day on Midnight lead to wrong values. * Fix: Allow negative values in GridProfileParser * Correct variable name * Fix #1579: Static IP in Ethernet mode did not work correctly * Feature: Added diagram to display This is based on the idea of @Henrik-Ingenieur and was discussed in #1504 * webapp: update dependencies * webapp: add app.js.gz --------- Co-authored-by: Thomas Basler <thomas@familie-basler.net> Co-authored-by: Pierre Kancir <pierre.kancir.emn@gmail.com>
156 lines
4.6 KiB
C++
156 lines
4.6 KiB
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "SPI.h"
|
|
#include <mcp_can.h>
|
|
#include <mutex>
|
|
#include <TaskSchedulerDeclarations.h>
|
|
|
|
#ifndef HUAWEI_PIN_MISO
|
|
#define HUAWEI_PIN_MISO 12
|
|
#endif
|
|
|
|
#ifndef HUAWEI_PIN_MOSI
|
|
#define HUAWEI_PIN_MOSI 13
|
|
#endif
|
|
|
|
#ifndef HUAWEI_PIN_SCLK
|
|
#define HUAWEI_PIN_SCLK 26
|
|
#endif
|
|
|
|
#ifndef HUAWEI_PIN_IRQ
|
|
#define HUAWEI_PIN_IRQ 25
|
|
#endif
|
|
|
|
#ifndef HUAWEI_PIN_CS
|
|
#define HUAWEI_PIN_CS 15
|
|
#endif
|
|
|
|
#ifndef HUAWEI_PIN_POWER
|
|
#define HUAWEI_PIN_POWER 33
|
|
#endif
|
|
|
|
#define HUAWEI_MINIMAL_OFFLINE_VOLTAGE 48
|
|
#define HUAWEI_MINIMAL_ONLINE_VOLTAGE 42
|
|
|
|
#define MAX_CURRENT_MULTIPLIER 20
|
|
|
|
// Index values for rec_values array
|
|
#define HUAWEI_INPUT_POWER_IDX 0
|
|
#define HUAWEI_INPUT_FREQ_IDX 1
|
|
#define HUAWEI_INPUT_CURRENT_IDX 2
|
|
#define HUAWEI_OUTPUT_POWER_IDX 3
|
|
#define HUAWEI_EFFICIENCY_IDX 4
|
|
#define HUAWEI_OUTPUT_VOLTAGE_IDX 5
|
|
#define HUAWEI_OUTPUT_CURRENT_MAX_IDX 6
|
|
#define HUAWEI_INPUT_VOLTAGE_IDX 7
|
|
#define HUAWEI_OUTPUT_TEMPERATURE_IDX 8
|
|
#define HUAWEI_INPUT_TEMPERATURE_IDX 9
|
|
#define HUAWEI_OUTPUT_CURRENT_IDX 10
|
|
#define HUAWEI_OUTPUT_CURRENT1_IDX 11
|
|
|
|
// Defines and index values for tx_values array
|
|
#define HUAWEI_OFFLINE_VOLTAGE 0x01
|
|
#define HUAWEI_ONLINE_VOLTAGE 0x00
|
|
#define HUAWEI_OFFLINE_CURRENT 0x04
|
|
#define HUAWEI_ONLINE_CURRENT 0x03
|
|
|
|
// Modes of operation
|
|
#define HUAWEI_MODE_OFF 0
|
|
#define HUAWEI_MODE_ON 1
|
|
#define HUAWEI_MODE_AUTO_EXT 2
|
|
#define HUAWEI_MODE_AUTO_INT 3
|
|
|
|
// Error codes
|
|
#define HUAWEI_ERROR_CODE_RX 0x01
|
|
#define HUAWEI_ERROR_CODE_TX 0x02
|
|
|
|
// Wait time/current before shuting down the PSU / charger
|
|
// This is set to allow the fan to run for some time
|
|
#define HUAWEI_AUTO_MODE_SHUTDOWN_DELAY 60000
|
|
#define HUAWEI_AUTO_MODE_SHUTDOWN_CURRENT 1.0
|
|
|
|
// Updateinterval used to request new values from the PSU
|
|
#define HUAWEI_DATA_REQUEST_INTERVAL_MS 2500
|
|
|
|
typedef struct RectifierParameters {
|
|
float input_voltage;
|
|
float input_frequency;
|
|
float input_current;
|
|
float input_power;
|
|
float input_temp;
|
|
float efficiency;
|
|
float output_voltage;
|
|
float output_current;
|
|
float max_output_current;
|
|
float output_power;
|
|
float output_temp;
|
|
float amp_hour;
|
|
} RectifierParameters_t;
|
|
|
|
class HuaweiCanCommClass {
|
|
public:
|
|
bool init(uint8_t huawei_miso, uint8_t huawei_mosi, uint8_t huawei_clk,
|
|
uint8_t huawei_irq, uint8_t huawei_cs, uint32_t frequency);
|
|
void loop();
|
|
bool gotNewRxDataFrame(bool clear);
|
|
uint8_t getErrorCode(bool clear);
|
|
uint32_t getParameterValue(uint8_t parameter);
|
|
void setParameterValue(uint16_t in, uint8_t parameterType);
|
|
|
|
private:
|
|
void sendRequest();
|
|
|
|
SPIClass *SPI;
|
|
MCP_CAN *_CAN;
|
|
uint8_t _huaweiIrq; // IRQ pin
|
|
uint32_t _nextRequestMillis = 0; // When to send next data request to PSU
|
|
|
|
std::mutex _mutex;
|
|
|
|
uint32_t _recValues[12];
|
|
uint16_t _txValues[5];
|
|
bool _hasNewTxValue[5];
|
|
|
|
uint8_t _errorCode;
|
|
bool _completeUpdateReceived;
|
|
};
|
|
|
|
class HuaweiCanClass {
|
|
public:
|
|
void init(Scheduler& scheduler, uint8_t huawei_miso, uint8_t huawei_mosi, uint8_t huawei_clk, uint8_t huawei_irq, uint8_t huawei_cs, uint8_t huawei_power);
|
|
void updateSettings(uint8_t huawei_miso, uint8_t huawei_mosi, uint8_t huawei_clk, uint8_t huawei_irq, uint8_t huawei_cs, uint8_t huawei_power);
|
|
void setValue(float in, uint8_t parameterType);
|
|
void setMode(uint8_t mode);
|
|
|
|
RectifierParameters_t * get();
|
|
uint32_t getLastUpdate();
|
|
bool getAutoPowerStatus();
|
|
|
|
private:
|
|
void loop();
|
|
void processReceivedParameters();
|
|
void _setValue(float in, uint8_t parameterType);
|
|
|
|
Task _loopTask;
|
|
|
|
TaskHandle_t _HuaweiCanCommunicationTaskHdl = NULL;
|
|
bool _initialized = false;
|
|
uint8_t _huaweiPower; // Power pin
|
|
uint8_t _mode = HUAWEI_MODE_AUTO_EXT;
|
|
|
|
RectifierParameters_t _rp;
|
|
|
|
uint32_t _lastUpdateReceivedMillis; // Timestamp for last data seen from the PSU
|
|
uint32_t _outputCurrentOnSinceMillis; // Timestamp since when the PSU was idle at zero amps
|
|
uint32_t _nextAutoModePeriodicIntMillis; // When to set the next output voltage in automatic mode
|
|
uint32_t _lastPowerMeterUpdateReceivedMillis; // Timestamp of last seen power meter value
|
|
uint32_t _autoModeBlockedTillMillis = 0; // Timestamp to block running auto mode for some time
|
|
|
|
uint8_t _autoPowerEnabledCounter = 0;
|
|
bool _autoPowerEnabled = false;
|
|
};
|
|
|
|
extern HuaweiCanClass HuaweiCan;
|
|
extern HuaweiCanCommClass HuaweiCanComm; |