Skip to content

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pu2clr committed Nov 14, 2024
1 parent 443c6ed commit 9493e1f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion examples/SI4844_00_POC/SI4844_00_POC.ino
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* It is a Proof of Concept (POC) of using Si4844 with the Arduino Library for rx.
*
* SI4844 and Arduino Pro Mini connections
* SI4844 and Arduino Pro Mini, Arduino Nano, Uno or LGT8F328 connections
*
* | SI4844 pin | Arduino pin | Description |
* | --------- | ------------ | ------------------------------------------------- |
Expand All @@ -10,6 +10,8 @@
* | 16 | A4 (SDA) | I2C bus (Data) |
* | 17 | A5 (SCL) | I2C bus (Clocl) |
*
* ATTENTION: Arduino Nano and Uno are 5V based board. Check the board voltage you are using
*
* Author: Ricardo Lima Caratti (PU2CLR)
* September, 2019
*/
Expand Down
8 changes: 5 additions & 3 deletions examples/SI4844_ESP8266_POC/SI4844_ESP8266_POC.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* | SI4844 pin | ESP8266 pin | Description |
* | --------- | ------------ | ------------------------------------------------- |
* | 2 | GPIO2 | Interrupt pin |
* | 2 | GPIO13 | Interrupt pin |
* | 15 | GPIO15 | Regurlar digital pin used to RESET control |
* | 16 | GPIO4(SDA) | I2C bus (Data) |
* | 17 | GPIO5(SCL) | I2C bus (Clocl) |
Expand All @@ -15,13 +15,15 @@
* Run the command "esptool.py flash_id" to get information about your board.
* More about ESP32C3 See: https://github.com/sidharthmohannair/Tutorial-ESP32-C3-Super-Mini
*
* Goto to Tool Menu; Select Board: Generic ESP8266 Module
*
* Author: Ricardo Lima Caratti (PU2CLR)
* September, 2024
*/
#include <SI4844.h>
// Arduino Pin (tested on pro mini)
#define INTERRUPT_PIN 2
#define RESET_PIN 15
#define INTERRUPT_PIN 13
#define RESET_PIN 15
#define DEFAULT_BAND 1

#define I2C_SDA 4
Expand Down

0 comments on commit 9493e1f

Please sign in to comment.