-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
113 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#pragma once | ||
|
||
#define DIR_NAME "warbee" | ||
#define FORMAT_VERSION "ElecCats-1.0" | ||
#define APP_VERSION CONFIG_PROJECT_VERSION | ||
#define MODEL "MININO" | ||
#define RELEASE APP_VERSION | ||
#define DEVICE "MININO" | ||
#define DISPLAY "SH1106 OLED" | ||
#define BOARD "ESP32C6" | ||
#define BRAND "Electronic Cats" | ||
#define STAR "Sol" | ||
#define BODY "3" | ||
#define SUB_BODY "0" | ||
|
||
// Zigbee Packet fields | ||
#define ZB_ADDRESS_FORMAT "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x" | ||
// AP WiFi Packet fields | ||
#define MAC_ADDRESS_FORMAT "%02x:%02x:%02x:%02x:%02x:%02x" | ||
#define EMPTY_MAC_ADDRESS "00:00:00:00:00:00" | ||
|
||
// CSV file properties | ||
#define CSV_LINE_SIZE 150 // Got it from real time tests | ||
#define CSV_FILE_SIZE (CSV_LINE_SIZE) * (MAX_CSV_LINES) | ||
#define CSV_HEADER_LINES 2 // Check `csv_header` variable | ||
#define MAX_CSV_LINES 200 + CSV_HEADER_LINES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters