9a9abd59e9
* WeatherStation: start * SubGhz: rename protocol magellen -> magellan * WeatherStation: err Unresolved symbols: {'subghz_protocol_decoder_base_get_string'} * WeatherStation: fix Unresolved symbols: {'subghz_protocol_decoder_base_get_string'} * Subghz: add set protocol_items * WeatherStation: adding your protocols * WS: add Infactory protocol * WS: add history * WS: add setting * WS: add lock * WS: add hopper frequency * WS: fix history * WS fix string_t -> FuriString* * WS: add images * WS: history record update when receiving data from the sensor again * WS: add receiver info, delete extra code * WS: add protocol ThermoPRO_TX4 * [FL-2900] SubGhz: Move icons in Sub-GHz * WS: add Notification * [FL-2890] SubGhz: Rename *_user files in resources to _user.example * WS: add about scene * WS: removing redundant code * WS: add protocol Nexus-TH * WS: add protocol GT_WT03 * WS: fix notification and rename "Weather Station" -> "Read Weather Station" * SubGhz: partial unit tests fix * SubGhz: fix unit_test * SubGhz: remove dead code * SubGhz: rename SubGhzPresetDefinition into SubGhzRadioPreset, cleanup subghz types. Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
198 lines
6.7 KiB
C
198 lines
6.7 KiB
C
#include "ws_generic.h"
|
|
#include <lib/toolbox/stream/stream.h>
|
|
#include <lib/flipper_format/flipper_format_i.h>
|
|
#include "../helpers/weather_station_types.h"
|
|
|
|
#define TAG "WSBlockGeneric"
|
|
|
|
void ws_block_generic_get_preset_name(const char* preset_name, FuriString* preset_str) {
|
|
const char* preset_name_temp;
|
|
if(!strcmp(preset_name, "AM270")) {
|
|
preset_name_temp = "FuriHalSubGhzPresetOok270Async";
|
|
} else if(!strcmp(preset_name, "AM650")) {
|
|
preset_name_temp = "FuriHalSubGhzPresetOok650Async";
|
|
} else if(!strcmp(preset_name, "FM238")) {
|
|
preset_name_temp = "FuriHalSubGhzPreset2FSKDev238Async";
|
|
} else if(!strcmp(preset_name, "FM476")) {
|
|
preset_name_temp = "FuriHalSubGhzPreset2FSKDev476Async";
|
|
} else {
|
|
preset_name_temp = "FuriHalSubGhzPresetCustom";
|
|
}
|
|
furi_string_set(preset_str, preset_name_temp);
|
|
}
|
|
|
|
bool ws_block_generic_serialize(
|
|
WSBlockGeneric* instance,
|
|
FlipperFormat* flipper_format,
|
|
SubGhzRadioPreset* preset) {
|
|
furi_assert(instance);
|
|
bool res = false;
|
|
FuriString* temp_str;
|
|
temp_str = furi_string_alloc();
|
|
do {
|
|
stream_clean(flipper_format_get_raw_stream(flipper_format));
|
|
if(!flipper_format_write_header_cstr(
|
|
flipper_format, WS_KEY_FILE_TYPE, WS_KEY_FILE_VERSION)) {
|
|
FURI_LOG_E(TAG, "Unable to add header");
|
|
break;
|
|
}
|
|
|
|
if(!flipper_format_write_uint32(flipper_format, "Frequency", &preset->frequency, 1)) {
|
|
FURI_LOG_E(TAG, "Unable to add Frequency");
|
|
break;
|
|
}
|
|
|
|
ws_block_generic_get_preset_name(furi_string_get_cstr(preset->name), temp_str);
|
|
if(!flipper_format_write_string_cstr(
|
|
flipper_format, "Preset", furi_string_get_cstr(temp_str))) {
|
|
FURI_LOG_E(TAG, "Unable to add Preset");
|
|
break;
|
|
}
|
|
if(!strcmp(furi_string_get_cstr(temp_str), "FuriHalSubGhzPresetCustom")) {
|
|
if(!flipper_format_write_string_cstr(
|
|
flipper_format, "Custom_preset_module", "CC1101")) {
|
|
FURI_LOG_E(TAG, "Unable to add Custom_preset_module");
|
|
break;
|
|
}
|
|
if(!flipper_format_write_hex(
|
|
flipper_format, "Custom_preset_data", preset->data, preset->data_size)) {
|
|
FURI_LOG_E(TAG, "Unable to add Custom_preset_data");
|
|
break;
|
|
}
|
|
}
|
|
if(!flipper_format_write_string_cstr(flipper_format, "Protocol", instance->protocol_name)) {
|
|
FURI_LOG_E(TAG, "Unable to add Protocol");
|
|
break;
|
|
}
|
|
|
|
uint32_t temp_data = instance->id;
|
|
if(!flipper_format_write_uint32(flipper_format, "Id", &temp_data, 1)) {
|
|
FURI_LOG_E(TAG, "Unable to add Id");
|
|
break;
|
|
}
|
|
|
|
temp_data = instance->data_count_bit;
|
|
if(!flipper_format_write_uint32(flipper_format, "Bit", &temp_data, 1)) {
|
|
FURI_LOG_E(TAG, "Unable to add Bit");
|
|
break;
|
|
}
|
|
|
|
uint8_t key_data[sizeof(uint64_t)] = {0};
|
|
for(size_t i = 0; i < sizeof(uint64_t); i++) {
|
|
key_data[sizeof(uint64_t) - i - 1] = (instance->data >> i * 8) & 0xFF;
|
|
}
|
|
|
|
if(!flipper_format_write_hex(flipper_format, "Data", key_data, sizeof(uint64_t))) {
|
|
FURI_LOG_E(TAG, "Unable to add Data");
|
|
break;
|
|
}
|
|
|
|
temp_data = instance->battery_low;
|
|
if(!flipper_format_write_uint32(flipper_format, "Batt", &temp_data, 1)) {
|
|
FURI_LOG_E(TAG, "Unable to add Battery_low");
|
|
break;
|
|
}
|
|
|
|
temp_data = instance->humidity;
|
|
if(!flipper_format_write_uint32(flipper_format, "Hum", &temp_data, 1)) {
|
|
FURI_LOG_E(TAG, "Unable to add Humidity");
|
|
break;
|
|
}
|
|
|
|
temp_data = instance->channel;
|
|
if(!flipper_format_write_uint32(flipper_format, "Ch", &temp_data, 1)) {
|
|
FURI_LOG_E(TAG, "Unable to add Channel");
|
|
break;
|
|
}
|
|
|
|
// temp_data = instance->btn;
|
|
// if(!flipper_format_write_uint32(flipper_format, "Btn", &temp_data, 1)) {
|
|
// FURI_LOG_E(TAG, "Unable to add Btn");
|
|
// break;
|
|
// }
|
|
|
|
float temp = instance->temp;
|
|
if(!flipper_format_write_float(flipper_format, "Temp", &temp, 1)) {
|
|
FURI_LOG_E(TAG, "Unable to add Temperature");
|
|
break;
|
|
}
|
|
|
|
res = true;
|
|
} while(false);
|
|
furi_string_free(temp_str);
|
|
return res;
|
|
}
|
|
|
|
bool ws_block_generic_deserialize(WSBlockGeneric* instance, FlipperFormat* flipper_format) {
|
|
furi_assert(instance);
|
|
bool res = false;
|
|
uint32_t temp_data = 0;
|
|
|
|
do {
|
|
if(!flipper_format_rewind(flipper_format)) {
|
|
FURI_LOG_E(TAG, "Rewind error");
|
|
break;
|
|
}
|
|
|
|
if(!flipper_format_read_uint32(flipper_format, "Id", (uint32_t*)&temp_data, 1)) {
|
|
FURI_LOG_E(TAG, "Missing Id");
|
|
break;
|
|
}
|
|
instance->id = (uint32_t)temp_data;
|
|
|
|
if(!flipper_format_read_uint32(flipper_format, "Bit", (uint32_t*)&temp_data, 1)) {
|
|
FURI_LOG_E(TAG, "Missing Bit");
|
|
break;
|
|
}
|
|
instance->data_count_bit = (uint8_t)temp_data;
|
|
|
|
uint8_t key_data[sizeof(uint64_t)] = {0};
|
|
if(!flipper_format_read_hex(flipper_format, "Data", key_data, sizeof(uint64_t))) {
|
|
FURI_LOG_E(TAG, "Missing Data");
|
|
break;
|
|
}
|
|
|
|
for(uint8_t i = 0; i < sizeof(uint64_t); i++) {
|
|
instance->data = instance->data << 8 | key_data[i];
|
|
}
|
|
|
|
if(!flipper_format_read_uint32(flipper_format, "Batt", (uint32_t*)&temp_data, 1)) {
|
|
FURI_LOG_E(TAG, "Missing Battery_low");
|
|
break;
|
|
}
|
|
instance->battery_low = (uint8_t)temp_data;
|
|
|
|
if(!flipper_format_read_uint32(flipper_format, "Hum", (uint32_t*)&temp_data, 1)) {
|
|
FURI_LOG_E(TAG, "Missing Humidity");
|
|
break;
|
|
}
|
|
instance->humidity = (uint8_t)temp_data;
|
|
|
|
if(!flipper_format_read_uint32(flipper_format, "Ch", (uint32_t*)&temp_data, 1)) {
|
|
FURI_LOG_E(TAG, "Missing Channel");
|
|
break;
|
|
}
|
|
instance->channel = (uint8_t)temp_data;
|
|
|
|
// if(!flipper_format_read_uint32(flipper_format, "Btn", (uint32_t*)&temp_data, 1)) {
|
|
// FURI_LOG_E(TAG, "Missing Btn");
|
|
// break;
|
|
// }
|
|
// instance->btn = (uint8_t)temp_data;
|
|
|
|
float temp;
|
|
if(!flipper_format_read_float(flipper_format, "Temp", (float*)&temp, 1)) {
|
|
FURI_LOG_E(TAG, "Missing Temperature");
|
|
break;
|
|
}
|
|
instance->temp = temp;
|
|
|
|
res = true;
|
|
} while(0);
|
|
|
|
return res;
|
|
}
|
|
|
|
float ws_block_generic_fahrenheit_to_celsius(float fahrenheit) {
|
|
return (fahrenheit - 32.0f) / 1.8f;
|
|
} |