1f5123a5e8aac2122bd3c658148d92f8f05295c1
Chip-dat/SemTech-dat/SX1262-dat/SX1262-dat.md
| ... | ... | @@ -3,6 +3,18 @@ |
| 3 | 3 | |
| 4 | 4 | - [[lora-dat]] - [[semtech-dat]] |
| 5 | 5 | |
| 6 | + |
|
| 7 | +- LLCC68ZTR4 (433MHz) |
|
| 8 | +- LLCC68ZTR8 (868MHz) |
|
| 9 | + |
|
| 10 | +- SX1262ZTR8 (868MHz) |
|
| 11 | +- SX1262ZTR4 (433MHz) |
|
| 12 | + |
|
| 13 | +- SX1278ZTR4 (433MHz) |
|
| 14 | +- SX1278TR4-Y (433MHz) |
|
| 15 | + |
|
| 16 | + |
|
| 17 | + |
|
| 6 | 18 | ## SX1262 Main Features |
| 7 | 19 | |
| 8 | 20 | - [[LoRa-dat]]® and [[FSK-dat]] modulation |
Tech-dat/Network-dat/RF-dat/LORA-DAT/2025-06-27-13-25-29.png
| ... | ... | Binary files /dev/null and b/Tech-dat/Network-dat/RF-dat/LORA-DAT/2025-06-27-13-25-29.png differ |
Tech-dat/Network-dat/RF-dat/LORA-DAT/2025-06-27-13-26-55.png
| ... | ... | Binary files /dev/null and b/Tech-dat/Network-dat/RF-dat/LORA-DAT/2025-06-27-13-26-55.png differ |
Tech-dat/Network-dat/RF-dat/LORA-DAT/Lora-SDK-dat/Lora-SDK-dat.md
| ... | ... | @@ -40,12 +40,16 @@ Path: The UserConfig.c file in LR_driver is a common file generated when adaptin |
| 40 | 40 | |
| 41 | 41 | ## lora encrpytion |
| 42 | 42 | |
| 43 | +- [[encryption-dat]] |
|
| 44 | + |
|
| 43 | 45 | To encrypt data for LoRa by coding, you typically use a symmetric encryption algorithm like AES before sending the data. Here’s a general approach: |
| 44 | 46 | |
| 45 | 47 | 1. Choose an Encryption Library |
| 48 | + |
|
| 46 | 49 | Most platforms (Arduino, STM32, Raspberry Pi, etc.) have AES libraries available. For example, on Arduino you can use [AESLib](https://github.com/DavyLandman/AESLib). |
| 47 | 50 | |
| 48 | 51 | 2. Encrypt Data Before Sending |
| 52 | + |
|
| 49 | 53 | Encrypt your payload before passing it to the LoRa send function. |
| 50 | 54 | |
| 51 | 55 | Example (Arduino, using AESLib): |
| ... | ... | @@ -68,6 +72,7 @@ Example (Arduino, using AESLib): |
| 68 | 72 | LoRa.endPacket(); |
| 69 | 73 | |
| 70 | 74 | 3. Decrypt on Receiver Side |
| 75 | + |
|
| 71 | 76 | On the receiver, use the same key to decrypt the received data. |
| 72 | 77 | |
| 73 | 78 | Example (Arduino, using AESLib): |
Tech-dat/Network-dat/RF-dat/LORA-DAT/Lora-dat.md
| ... | ... | @@ -51,6 +51,18 @@ The main LoRa RF chips are the SX127X series, SX126X series, and SX130X series. |
| 51 | 51 | |
| 52 | 52 | - [[RSSI-dat]] |
| 53 | 53 | |
| 54 | +frequency hopping, spread spectrum, and other technologies are used to improve anti-interference and anti-collision capabilities. |
|
| 55 | + |
|
| 56 | + |
|
| 57 | + |
|
| 58 | +- [[low-power-dat]] == LORA CAD Mode |
|
| 59 | + |
|
| 60 | +Flexible configuration |
|
| 61 | + |
|
| 62 | + |
|
| 63 | + |
|
| 64 | + |
|
| 65 | + |
|
| 54 | 66 | #### LBT |
| 55 | 67 | |
| 56 | 68 | The module actively monitors channel environmental noise before transmitting. If the noise exceeds a threshold, transmission is delayed. |
| ... | ... | @@ -82,13 +94,15 @@ HPD Series - [[NWL1074-dat]] - [[NWL1075-dat]] - [[NWL1077-dat]] |
| 82 | 94 | |
| 83 | 95 | ## Chip |
| 84 | 96 | |
| 85 | -- [[semtech-dat]] - [[sx1262-dat]] |
|
| 97 | +- [[semtech-dat]] - [[sx1262-dat]] - [[LLCC68-dat]] - [[SX1278-dat]] - [[SX1268-dat]] |
|
| 86 | 98 | |
| 87 | 99 | - [[ASR6500-dat]] - [[ASR-dat]] |
| 88 | 100 | |
| 89 | 101 | |
| 90 | 102 | - [[crystal-dat]] |
| 91 | 103 | |
| 104 | +- [[PAN3031-dat]] |
|
| 105 | + |
|
| 92 | 106 | |
| 93 | 107 | ## lora power and tranmission |
| 94 | 108 |
Tech-dat/encryption-dat/encryption-dat.md
| ... | ... | @@ -1,6 +1,16 @@ |
| 1 | 1 | |
| 2 | 2 | # encryption-dat |
| 3 | 3 | |
| 4 | +- [[lora-sdk-dat]] |
|
| 5 | + |
|
| 4 | 6 | ## AES encryption |
| 5 | 7 | |
| 6 | - |
|
| ... | ... | \ No newline at end of file |
| 0 | + |
|
| 1 | + |
|
| 2 | + |
|
| 3 | + |
|
| 4 | +## ref |
|
| 5 | + |
|
| 6 | +- [AESLib](https://github.com/DavyLandman/AESLib) |
|
| 7 | + |
|
| 8 | +- [[tech-dat]] |
|
| ... | ... | \ No newline at end of file |
Tech-dat/tech-dat.md
| ... | ... | @@ -1,6 +1,8 @@ |
| 1 | 1 | |
| 2 | 2 | # tech |
| 3 | 3 | |
| 4 | +## Main tech |
|
| 5 | + |
|
| 4 | 6 | - [[board-dat]] |
| 5 | 7 | |
| 6 | 8 | - [[chip-dat]] - [[chip-cn-dat]] |
| ... | ... | @@ -27,6 +29,10 @@ |
| 27 | 29 | |
| 28 | 30 | - [[app-dat]] - [[mechanics-dat]] |
| 29 | 31 | |
| 32 | +## New Tech And Updates |
|
| 33 | + |
|
| 34 | +- [[lora-dat]] |
|
| 35 | + |
|
| 30 | 36 | |
| 31 | 37 | ## Category |
| 32 | 38 |
board-series-dat/led-rgb-panel-dat/led-rgb-panel-chip-dat/led-rgb-panel-chip-dat.md
| ... | ... | @@ -1,6 +1,8 @@ |
| 1 | 1 | |
| 2 | 2 | # led-rgb-panel-chip-dat |
| 3 | 3 | |
| 4 | +- [[led-rgb-panel-chip-log-dat]] |
|
| 5 | + |
|
| 4 | 6 | ## direct ABCDE addressing |
| 5 | 7 | |
| 6 | 8 | ### DP5125D |
board-series-dat/led-rgb-panel-dat/led-rgb-panel-chip-dat/led-rgb-panel-chip-log-dat/2025-06-27-13-04-31.png
| ... | ... | Binary files /dev/null and b/board-series-dat/led-rgb-panel-dat/led-rgb-panel-chip-dat/led-rgb-panel-chip-log-dat/2025-06-27-13-04-31.png differ |
board-series-dat/led-rgb-panel-dat/led-rgb-panel-chip-dat/led-rgb-panel-chip-log-dat/2025-06-27-13-04-49.png
| ... | ... | Binary files /dev/null and b/board-series-dat/led-rgb-panel-dat/led-rgb-panel-chip-dat/led-rgb-panel-chip-log-dat/2025-06-27-13-04-49.png differ |
board-series-dat/led-rgb-panel-dat/led-rgb-panel-chip-dat/led-rgb-panel-chip-log-dat/led-rgb-panel-chip-log-dat.md
| ... | ... | @@ -0,0 +1,16 @@ |
| 1 | + |
|
| 2 | +# led-rgb-panel-chip-log-dat |
|
| 3 | + |
|
| 4 | +## 0627 |
|
| 5 | + |
|
| 6 | +FM TC7262FJ + 6124C |
|
| 7 | + |
|
| 8 | + |
|
| 9 | + |
|
| 10 | + |
|
| 11 | + |
|
| 12 | + |
|
| 13 | + |
|
| 14 | +## ref |
|
| 15 | + |
|
| 16 | +- [[led-rgb-panel-chip-dat]] |
|
| ... | ... | \ No newline at end of file |
power-dat/low-power-dat/2025-06-27-13-26-22.png
| ... | ... | Binary files /dev/null and b/power-dat/low-power-dat/2025-06-27-13-26-22.png differ |
power-dat/low-power-dat/low-power-dat.md
| ... | ... | @@ -35,6 +35,14 @@ |
| 35 | 35 | - https://www.arduino.cc/reference/en/libraries/arduino-low-power/ |
| 36 | 36 | |
| 37 | 37 | |
| 38 | + |
|
| 39 | +## LORA CAD Mode |
|
| 40 | + |
|
| 41 | + |
|
| 42 | + |
|
| 43 | + |
|
| 44 | + |
|
| 45 | + |
|
| 38 | 46 | ## ref |
| 39 | 47 | |
| 40 | 48 | - legacy wiki page - https://w.electrodragon.com/w/Category:Low_Power |