Heltec CubeCell - part 2

CubeCell-GPS ( HTCC-AB02S ) is known to operate well with BASICMAC (successor of LMIC) port for Arduino:

image

Radio settings for the CubeCell are:

#include <board-config.h>

// CubeCell-GPS SX1262 pin mapping
lmic_pinmap lmic_pins = {
    .nss = RADIO_NSS,
    .tx = LMIC_CONTROLLED_BY_DIO2,
    .rx = LMIC_UNUSED_PIN,
    .rst = RADIO_RESET,
    .dio = {LMIC_UNUSED_PIN, RADIO_DIO_1, LMIC_UNUSED_PIN},
    .busy = RADIO_BUSY,
    .tcxo = LMIC_CONTROLLED_BY_DIO3,
};
2 Likes