Programming #
The NORVI EC-M11-EG-C1-S has a mini USB port for serial connection with the SoC for programming. Any ESP32-supported programming IDE can be used to program the controller. Follow this guide to programming NORVI ESP32-based controllers with the Arduino IDE.
SoC: ESP32-WROOM32
Programming Port: USB UART
8-pin Connector and wire harness #
Pin Description #
8P Male | Wire color | I/O Configuration |
1 | White | Digital In 1 |
2 | Brown | Digital In 2 |
3 | Green | Analog In 1 |
4 | Yellow | Analog In 2 |
5 | Gray | Power+ |
6 | Pink | Power- |
7 | Blue | RS-485B |
8 | Red | RS-485A |
Digital Inputs #
Wiring Digital Inputs #
The digital inputs of NORVI EC-M11-EG-C1-S can be configured as both a sink and a source connection. The inverse of the digital input polar should be supplied to the common terminal.
Programming Digital Inputs #
Reading the relevant GPIO of the ESP32 gives the value of the digital input. When the inputs are in the OFF state, the GPIO goes HIGH, and when the inputs are in the ON state, the GPIO goes LOW. Refer to the GPIO allocation table in the datasheet for the digital input GPIO.
#define INPUT1 34
void setup() {
Serial.begin(115200);
Serial.println("Device Starting");
pinMode(INPUT1, INPUT);
}
void loop() {
Serial.print(digitalRead(INPUT1));
Serial.println("");
delay(500);
}
0-10 V Analog Input #
Reading Analog Input #
Reading the relevant I2C address of the ADC gives the value of the analog input.
Programming Analog Inputs #
#include <Adafruit_ADS1X15.h>
#include <Wire.h>
Adafruit_ADS1115 ads1;
void setup() {
Serial.begin(115200);
Serial.println("Device Starting");
Wire.begin(16,17);
ads1.begin(0x49);
ads1.setGain(GAIN_ONE);
}
void loop() {
Serial.print("Analog 0 ");Serial.println(ads1.readADC_SingleEnded(0)); delay(10);
Serial.print("Analog 1 ");Serial.println(ads1.readADC_SingleEnded(1)); delay(10);
Serial.print("Analog 2 ");Serial.println(ads1.readADC_SingleEnded(2)); delay(10);
Serial.println("");
delay(500);
}
RS-485 Communication #
Driver | MAX485 |
UART RX | GPIO4 |
UART TX | GPIO2 |
Flow Control | GPIO13 |
Programming RS-485 #
NORVI EC-M11-EG series RS-485 connection uses a half-duplex mode of MAX485 transmitter with UART
Communication.
#define RS485_FC 13
void setup() {
Serial.begin(115200);
Serial.println("Device Starting");
pinMode(RS485_FC, OUTPUT);
}
void loop() {
digitalWrite(RS485_FC, HIGH); // Turns on Transmitter Mode
Serial.println("RS-485 Sending");
delay(500);
}
LoRa Transceiver Module #
Specification | Long Range(LoRa) |
RF Transceiver | Order depending on regional regulations |
SPI MISO | GPIO19 |
SPI MOSI | GPIO23 |
SPI SCK | GPIO18 |
NSS | GPIO26 |
DIO0 | GPIO25 |
DIO1 | GPIO27 |
DIO2 | NOT CONNECTED |
RESET | GPIO15 |
Programming LoRa Modules #
#include <lmic.h>
#include <hal/hal.h>
#include <SPI.h>
#define CONFIRMED_MSG_RETRY_COUNT 3
static const u1_t PROGMEM APPEUI[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
void os_getArtEui (u1_t* buf) {
memcpy_P(buf, APPEUI, 8);
}
static const u1_t PROGMEM DEVEUI[8] = {0x4B, 0x11, 0x3F, 0xB1, 0x3C, 0xBE, 0xD6, 0x56};
void os_getDevEui (u1_t* buf) {
memcpy_P(buf, DEVEUI, 8);
}
static const u1_t PROGMEM APPKEY[16] = {0xF9, 0x65, 0xE4, 0xED, 0xFF, 0x8A, 0x89, 0x27, 0x23, 0xA6, 0xB7, 0x42, 0x2F, 0x05, 0x8E, 0x9F};
void os_getDevKey (u1_t* buf) {
memcpy_P(buf, APPKEY, 16);
}
static uint8_t mydata[] = "Hello, world!";
static osjob_t sendjob;
const unsigned TX_INTERVAL = 60;
const lmic_pinmap lmic_pins = {
.nss = 26,
.rxtx = LMIC_UNUSED_PIN,
.rst = 15,
.dio = {25, 27, -1},
};
void printHex2(unsigned v) {
v &= 0xff;
if (v < 16)
Serial.print('0');
Serial.print(v, HEX);
}