WisBlock + 4630 pinout for VSCODE

Hi,

im developing for LoRa APRS with this board (WisBlock + 4630) and so far found how to power it, and start lora to send and receive packets.

but after searching a looooooot I did not find a simple and clear data sheet or schematic about all the other available pins to use them in VSCODE code.

any Guide besides the 7 LoRa pins I have?

Welcome to the forum @richonguzman

RAK4630 internal schematics

When I use Google it is the second result
https://www.google.com/search?client=firefox-b-d&q=RAK4630+schematics

So now I have :

Lora pins,
led pins,
I2C and I2C-2 pins
could not find the Voltage reading pins for battery connected though

Because that’s not inside the RAK4630. Battery readings are done externally through one of the ADC’s.
With WisBlock we are using P0.05/AIN2, but when you are using the stamp module and use your own firmware not based on our RUI3 or Arduino BSP, you can use any analog input of the module.

great!

it seems I got it all… now im learning about the BLE connections to iPhone and UUIDS

#include <InternalFileSystem.h>
#include <Adafruit_LittleFS.h>

Adafruit_LittleFS_Namespace::File myFile(InternalFS);

myFile.open(ConfigFilePath, Adafruit_LittleFS_Namespace::FILE_O_READ)....

this worked wonders!