Posted on

Industrial Arduino Norvi Getting started guide

Industrial Arduino NORVi

Getting started with Industrial Arduino

It really does not need to be documented on getting started with NORVI. Still we have made a guide to clear your doubts.
NORVI products represents a development board with industrial level protection
and attenuation enclosed in an industrial enclosure.
The device comes marked with all necessary information to start your projects.

Let’s start with
Power supply.

NORVI Industrial Arduino is rated: 24V DC 1A
24V DC 1A Power supply is recommended.
All the NORVI Industrial Arduino can be powered up with the USB Connection, It is required to use an external power supply to get the full functionality
.
`

Programming the controller.

All the devices are standard with a USB Port for programming.
NORVI Models will be recognized as following within the IDE
Table1.0 

NORVI CEMA

Arduino
micro

NORVI IIOT

COM port

NORVI ARITA MEGA2560

ARDUINO
MEGA2560

NORVI ARITA STM32F103VCT6

ARDUINO Maple

 

 

 

 

Supported IDE

NORVI ARITA
NORVI CEMA

 

NORVI IIOT
   

Selecting the board
Select the appropriate Arduino board according to NORVI
model. Refer
Table1.0

Addressing Inputs & Outputs
It is done the same way you address, a development boards pin with your programming IDE.
Below are few examples for better understanding

NORVI IIOT : Relay ON/OFF

 



 

 



 

 

Let’s say we need to turn on R0 Relay.


Referring to Quick Start Guide or terminal marks
R0 is connected to IO 14 , Arduino code example is as
follows

 

void setup() {

// Declare IO14 as OUTPUT

pinMode(14, OUTPUT);

}

void loop() {

// put your main code here, to run
repeatedly:

digitalWrite(14, HIGH); // Turn ON 14(R0)

delay(1000);

digitalWrite(14, LOW); // Turn
OFF 14(R0)

delay(1000);

}

NORVI IIOT : Digital Input

 

Reading status of I0 and printing it on Serial.
Referring to Quick Start Guide or terminal marks
I0 is connected to IO 18, Arduino code example is as
follows

void setup() {

// Declare IO14 as OUTPUT

Serial.begin(9600);

pinMode(18, INPUT);

}

void loop() {

// put your main code here, to run
repeatedly:

Serial.println(digitalRead(18));

delay(1000);

}

You can download quick start
guides and reference manuals via following link
https://norvi.lk/support/

Order Online
https://norvi.lk/products/

Posted on

Norvi: Changing IOT One Device At A Time

Product video
https://youtu.be/NVzUWdYsrF4

Reference Manuals & Quick Start guides
https://norvi.lk/support/

Order Online
https://norvi.lk/products/

Industrial Arduino ESP32

The tech world is sometimes filled with a multitude of difficulties that only seem to increase in complexity with every wave of innovation. It wasn’t too long ago that transfers of data were measured in kilobytes instead of the many gigabytes we download and upload on a daily basis.

Recognizing the changing demands of the IT industry, we, at NORVI, have strived to create products that add value to the way you manage IOT applications. We have achieved this with a range of controllers, each designed with a specific client in mind and a move towards achieving efficiency of management.

Norvi Cema

For those seeking an economy of size, we have developed the Norvi Cema. Its compact design boasts extreme performance within tight spaces, whilst still having 8 outputs and inputs.

Moreover, this pocket dynamite comes standard with 8Mhz of processing speed as well as a 32-kilobyte flash. Combined with a user-friendly design that includes integrated OLED and LED indicators, the Norvi Cema is primed as the best performing device in its class.

Norvi IIOT

When it comes to IOT management, we realized that connectivity matters. Thus, to provide a value-adding device for a growing market, we designed the IIOT to lead the way in all matters regarding connectivity.

The IIOT offers a Dual Core 32-bit CPU that achieves a total of 160 MHZ. Moreover, it combines with a 520-kilobyte SRAM and a 4MB Flash. Using this powerful processor, the IIOT also conforms to industrial standards, a nod to the integrity of the Norvi brand and our value of our clients.

Norvi Arita

Sometimes our clients look to us for high levels of processing power and performance. To solve this growing need in the market, we have carefully crafted the Arita – a device that comes with the choice of two processors. It conforms to industry standards and boasts compatibility with every type of input and output.

Again, connectivity is a highly-necessary aspect of micro-controllers, a value we have instilled into all of our devices. The Arita is no different, as we have strived to create a powerful IOT device that adds value in both processing speed and reliability.

As for processors, our customers have the choice between a 72-MHZ CPU with a 72-kilobyte flash and a 8-MHZ CPU with a 72-kilobyte flash. The choice largely depends on the individual needs of your tasks and we would be happy to assist you in deciphering which one suits you best.

At Norvi, we introduce a merger of effective technology with innovations that make a difference to your commercial ventures. When you turn to a supplier of IIOT solution, you need a reliable connection that is consistent, a suitable processor that meets your computing needs and a device that is engineered to fit into your system with ease. We have considered every detail of industrial computing; thus, our Norvi range is ready to add value by providing you with a controller base that stands out from the market.

Posted on

Industrial IOT Hardware with ESP32

Industrial IOT Hardware

Product video
https://youtu.be/NVzUWdYsrF4

Reference Manuals & Quick Start guides
https://norvi.lk/support/

Order Online
https://norvi.lk/products/

ESP32 is a SoC where you can start your first IOT prototype with. There are many development boards available on the market. Its connectivity and speed make it possibly suitable for any IIOT application. In terms of programming, there are few IDEs and Languages you can use with ESP32.
Simply you can go with Arduino or ESP-IDF. I mostly use platform IO for programming ESP devices. Most of the arduino board compatible hardware is made compatible with ESP32 devices, and there are libraries to quickly get into the programming.
One of the hassles with ESP devices, is the boot pin. Once you have good hardware, the latest drivers and latest ESP-IDF version, putting it into boot mode automatically will not be a problem. When you are done testing your ideas, You need to implement it.
Then the problems with making ESP32 ready for Industrial Environments blocks you. You need proper enclosing, mounting and then good power supply, IO isolations, EMI Safety and reliable industrial grade electronics.
NORVI IIOT Industrial ESP32 is the most suited product on the market for any industrial IOT implementations. It has a combination of flexibility of ESP32 and Reliability of a PLC. It has featured your most familiar hardware, a 0.96 SSD1306 OLED Display and three buttons on top of the controller for any external commands.
That is what you need, a display to see what’s going on, and buttons to command that makes your troubleshooting quicker.
We know you are going to code the ESP32, so we focused our product on easy diagnosis and troubleshooting. We have been where you are, all the difficulties in making a custom board or using a development board in industrial application are solved in NORVI IIOT.
NORVI IIOT Industrial ESP32 is a direct competitor for most PLCs out-there.
All the Inputs and Relays in the NORVI IIOT is accessible with the same GPIO numbers as you program your development board. It doesn’t need any additional drivers or libraries. It has a built in USB port for programming.