This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| projects:internetofthings:esp32lora [2018/05/14 08:04] – scipio | projects:internetofthings:esp32lora [2020/03/21 16:02] (current) – [ESP32 LORA] scipio | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== ESP32 LORA ====== | ====== ESP32 LORA ====== | ||
| - | * [[https:// | + | * [[https:// |
| + | * [[https:// | ||
| + | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| + | * [[http:// | ||
| + | |||
| + | {{: | ||
| + | |||
| + | heltec esp32 lora https:// | ||
| + | {{ : | ||
| + | |||
| + | ===== Lora basic sender and receiver ===== | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | SX1278 433MHz | ||
| + | |||
| + | < | ||
| + | // re-define pin definitions of pins_arduino.h | ||
| + | #define PIN_SPI_SS | ||
| + | #define PIN_SPI_MOSI | ||
| + | #define PIN_SPI_MISO | ||
| + | #define PIN_SPI_SCK | ||
| + | |||
| + | // non arduino pin definitions | ||
| + | #define RST 14 // ESP32 GPIO14 (Pin14) -- SX1276 NRESET (Pin7) Reset Trigger Input | ||
| + | #define DIO0 26 // ESP32 GPIO26 (Pin15) -- SX1276 DIO0 (Pin8) used by LMIC for detecting LoRa RX_Done & TX_Done | ||
| + | #define DIO1 33 // ESP32 GPIO33 (Pin13) -- SX1276 DIO1 (Pin9) used by LMIC for detecting LoRa RX_Timeout | ||
| + | #define DIO2 LMIC_UNUSED_PIN // 32 ESP32 GPIO32 (Pin12) -- SX1276 DIO2 (Pin10) not used by LMIC for LoRa (Timeout for FSK only) | ||
| + | </ | ||
| + | |||
| + | |||
| + | TO BUY: | ||
| + | * https:// | ||