AB02 Display & LORaWAN

Hi,

I want to display my measurements for a few seconds after I took them and then send a uplink to the NS.

I have tried a few things and seems not anything from Dr. Google.

I cant seem to find the correct way to call the display.

Your help will be appriciated.

#include "LoRaWan_APP.h"
#include "Arduino.h"

//Display
#include <Wire.h> 
#include "HT_SH1107Wire.h"
SH1107Wire  display(0x3c, 500000, SDA, SCL ,GEOMETRY_128_64,GPIO10); // addr, freq, sda, scl, resolution, rst


/*
 * set LoraWan_RGB to Active,the RGB active in loraWan
 * RGB red means sending;
 * RGB purple means joined done;
 * RGB blue means RxWindow1;
 * RGB yellow means RxWindow2;
 * RGB green means received done;
 */

/* OTAA para*/
uint8_t devEui[] = { 0x3A, 0xE3, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 };
uint8_t appEui[] = { 0x3A, 0xE3, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00 };
uint8_t appKey[] = { 0xE3, 0x7E, 0x21, 0xD7, 0xA4, 0x60, 0x6F, 0x8E, 0x4E, 0x1B, 0x57, 0xA7, 0x7A, 0xDA, 0xA3, 0x9E };

/* ABP para*/
uint8_t nwkSKey[] = { 0x15, 0xb1, 0xd0, 0xef, 0xa4, 0x63, 0xdf, 0xbe, 0x3d, 0x11, 0x18, 0x1e, 0x1e, 0xc7, 0xda,0x85 };
uint8_t appSKey[] = { 0xd7, 0x2c, 0x78, 0x75, 0x8c, 0xdc, 0xca, 0xbf, 0x55, 0xee, 0x4a, 0x77, 0x8d, 0x16, 0xef,0x67 };
uint32_t devAddr =  ( uint32_t )0x007e6ae1;

/*LoraWan channelsmask, default channels 0-7*/ 
uint16_t userChannelsMask[6]={ 0x00FF,0x0000,0x0000,0x0000,0x0000,0x0000 };

/*LoraWan region, select in arduino IDE tools*/
LoRaMacRegion_t loraWanRegion = ACTIVE_REGION;

/*LoraWan Class, Class A and Class C are supported*/
DeviceClass_t  loraWanClass = LORAWAN_CLASS;

/*the application data transmission duty cycle.  value in [ms].*/
uint32_t appTxDutyCycle = 60000;

/*OTAA or ABP*/
bool overTheAirActivation = LORAWAN_NETMODE;

/*ADR enable*/
bool loraWanAdr = LORAWAN_ADR;

/* set LORAWAN_Net_Reserve ON, the node could save the network info to flash, when node reset not need to join again */
bool keepNet = LORAWAN_NET_RESERVE;

/* Indicates if the node is sending confirmed or unconfirmed messages */
bool isTxConfirmed = LORAWAN_UPLINKMODE;

/* Application port */
uint8_t appPort = 2;
/*!
* Number of trials to transmit the frame, if the LoRaMAC layer did not
* receive an acknowledgment. The MAC performs a datarate adaptation,
* according to the LoRaWAN Specification V1.0.2, chapter 18.4, according
* to the following table:
*
* Transmission nb | Data Rate
* ----------------|-----------
* 1 (first)       | DR
* 2               | DR
* 3               | max(DR-1,0)
* 4               | max(DR-1,0)
* 5               | max(DR-2,0)
* 6               | max(DR-2,0)
* 7               | max(DR-3,0)
* 8               | max(DR-3,0)
*
* Note, that if NbTrials is set to 1 or 2, the MAC will not decrease
* the datarate, in case the LoRaMAC layer did not receive an acknowledgment
*/
uint8_t confirmedNbTrials = 4;

/* Prepares the payload of the frame */
static void prepareTxFrame( uint8_t port )
{
	/*appData size is LORAWAN_APP_DATA_MAX_SIZE which is defined in "commissioning.h".
	*appDataSize max value is LORAWAN_APP_DATA_MAX_SIZE.
	*if enabled AT, don't modify LORAWAN_APP_DATA_MAX_SIZE, it may cause system hanging or failure.
	*if disabled AT, LORAWAN_APP_DATA_MAX_SIZE can be modified, the max value is reference to lorawan region and SF.
	*for example, if use REGION_CN470, 
	*the max value for different DR can be found in MaxPayloadOfDatarateCN470 refer to DataratesCN470 and BandwidthsCN470 in "RegionCN470.h".
	*/
	//Take measurements
	uint16_t vBatt = getBatteryVoltage();
	uint16_t uC =analogRead(ADC);

	//Display measurements
	display.setTextAlignment(TEXT_ALIGN_LEFT);
	display.setFont(ArialMT_Plain_16);
	display.drawString(0, 0, "V Batt = ");
	display.drawString(0, 2, vBatt);
	display.drawString(0, 6, "uC = ");
	display.drawString(0, 8, uC);
	delay(2000);

    appDataSize = 2;
    appData[0] = vBatt * 10;
    appData[1] = uC*10;






 }


void setup() {
	boardInitMcu();
	Serial.begin(115200);
	display.init();
#if(AT_SUPPORT)
	enableAt();
#endif
	deviceState = DEVICE_STATE_INIT;
	LoRaWAN.ifskipjoin();
}

void loop()
{
	switch( deviceState )
	{
		case DEVICE_STATE_INIT:
		{
#if(AT_SUPPORT)
			getDevParam();
#endif
			printDevParam();
			LoRaWAN.init(loraWanClass,loraWanRegion);
			deviceState = DEVICE_STATE_JOIN;
			break;
		}
		case DEVICE_STATE_JOIN:
		{
			LoRaWAN.join();
			break;
		}
		case DEVICE_STATE_SEND:
		{
			prepareTxFrame( appPort );
			LoRaWAN.send();
			deviceState = DEVICE_STATE_CYCLE;
			break;
		}
		case DEVICE_STATE_CYCLE:
		{
			// Schedule next packet transmission
			txDutyCycleTime = appTxDutyCycle + randr( 0, APP_TX_DUTYCYCLE_RND );
			LoRaWAN.cycle(txDutyCycleTime);
			deviceState = DEVICE_STATE_SLEEP;
			break;
		}
		case DEVICE_STATE_SLEEP:
		{
			LoRaWAN.sleep();
				display.stop();
				detachInterrupt(RADIO_DIO_1);
			break;
		}
		default:
		{
			deviceState = DEVICE_STATE_INIT;
			break;
		}
	}
}

You can try this example,

Thank you, very nice example of seeing the AB02 joining, sending etc, on the OLED.

I want to see my measurements I took on the OLED,

	uint16_t vBatt = getBatteryVoltage();
	uint16_t uC =analogRead(ADC);

	//Display measurements
	display.setTextAlignment(TEXT_ALIGN_LEFT);
	display.setFont(ArialMT_Plain_16);
	display.drawString(0, 0, "V Batt = ");
	display.drawString(0, 2, vBatt);
	display.drawString(0, 6, "uC = ");
	display.drawString(0, 8, uC);
	delay(2000);

    appDataSize = 2;
    appData[0] = vBatt * 10;
    appData[1] = uC*10;

How do I get this to work?

You can follow, LoRaWAN.displaySending();function to write what you need to display.

I can not get the OLDE to turn on I can see from the “Joined” to the “Sending” a 4 seconded delay, the delay from my code.

		case DEVICE_STATE_SEND:
		{
      //isDispayOn = 1;
      pinMode(Vext,OUTPUT);
      digitalWrite(Vext,LOW);
      display.init();
      display.setFont(ArialMT_Plain_10);
      display.setTextAlignment(TEXT_ALIGN_CENTER);
      display.clear();
      display.drawString(58, 22, "Display");
      delay(4000);
      LoRaWAN.displaySending();
			prepareTxFrame( appPort );
			LoRaWAN.send();
			deviceState = DEVICE_STATE_CYCLE;
			break;
		}

Hi @johan-scheepers
you need to call display.clear() before display.drawString() and display.display() after draw.

	display.setFont(ArialMT_Plain_16);
	display.setTextAlignment(TEXT_ALIGN_CENTER);
	display.clear();
	display.drawString(58, 22, "HELLO THERE....");
	display.display(); 

    delay(5000);

	display.clear();
	display.drawString(58, 22, "My Name is ....");
	display.display();

Checkout the source code here, and search for display.display()

1 Like

@jayjay Thank you for your help