Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update OLED_LoRa_Reciver.ino #11

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion OLED_LoRa_Reciver/OLED_LoRa_Reciver.ino
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#define DI0 26 // GPIO26 -- SX1278's IRQ(Interrupt Request)
#define BAND 868E6

SSD1306 display(0x3c, 21, 22);
SSD1306 display(0x3c, 4, 15);
String rssi = "RSSI --";
String packSize = "--";
String packet ;
Expand Down
4 changes: 2 additions & 2 deletions OLED_LoRa_Sender/OLED_LoRa_Sender.ino
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

unsigned int counter = 0;

SSD1306 display(0x3c, 21, 22);
SSD1306 display(0x3c, 4, 15);
String rssi = "RSSI --";
String packSize = "--";
String packet ;
Expand All @@ -40,7 +40,7 @@ void setup() {

SPI.begin(SCK,MISO,MOSI,SS);
LoRa.setPins(SS,RST,DI0);
if (!LoRa.begin(433E6)) {
if (!LoRa.begin(868E6)) {
Serial.println("Starting LoRa failed!");
while (1);
}
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# TTGO-LORA32-V2.0
# TTGO-LORA32-V1.0 868Mhz

![images](https://github.com/LilyGO/TTGO-LORA32-V2.0/blob/master/images/image5.jpg)
![image](https://github.com/LilyGO/TTGO-LORA32-V2.0/blob/LilyGO-868-V1.0/images/image8681.jpg)

![images](https://github.com/LilyGO/TTGO-LORA32-V2.0/blob/master/images/image4.jpg)

![images](https://github.com/LilyGO/TTGO-LORA32-V2.0/blob/master/images/image2.jpg)
![image](https://github.com/LilyGO/TTGO-LORA32-V2.0/blob/LilyGO-868-V1.0/images/image8682.jpg)

![images](https://github.com/LilyGO/TTGO-LORA32-V2.0/blob/master/images/image3.jpg)
Binary file added images/image8681.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/image8682.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading