mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-28 03:14:28 +01:00
first_beta3
This commit is contained in:
parent
960cc5754f
commit
cb95f30500
|
|
@ -1,10 +1,10 @@
|
|||
#include <Arduino.h>
|
||||
#include <SPI.h>
|
||||
#include <LoRa.h>
|
||||
#include <WiFi.h>
|
||||
#include "iGate_config.h"
|
||||
#include "pins_config.h"
|
||||
|
||||
|
||||
WiFiClient espClient;
|
||||
int status = WL_IDLE_STATUS;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
#ifndef IGATE_CONFIG_H_
|
||||
#define IGATE_CONFIG_H_
|
||||
|
||||
#include <Arduino.h>
|
||||
|
||||
#define WIFI_SSID "Richon"
|
||||
#define WIFI_PASSWORD "k4fPnmg5qnyf"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
#ifndef PINS_CONFIG_H_
|
||||
#define PINS_CONFIG_H_
|
||||
|
||||
#include <Arduino.h>
|
||||
|
||||
|
||||
#define LORA_SCK 5 // GPIO5 - SX1276 SCK
|
||||
#define LORA_MISO 19 // GPIO19 - SX1276 MISO
|
||||
#define LORA_MOSI 27 // GPIO27 - SX1276 MOSI
|
||||
|
|
|
|||
Loading…
Reference in a new issue