Define your Solution
Select Open Hardware Platform
Use familiar OpenSource IDE to build custom solution
Indino 4.0 series defines a new way of transforming factories into smart/intelligent factories for efficient and easy remote monitoring operational status of facilities such as on/off status, pressure and temperature. Indino 4.0 supporting for wide range of industrial protocols
like Modbus, MQTT, JSON, RESTful, TCP/UDP, SNMP protocol, which makes the monitoring and solution integration, easier than ever for IT engineers through open source APIs.
Indino 4.0 can used to build the custom industrial solution for monitoring and
controlling PLC and SCADA, HMI, VFD,Motors, servo, Valves, energy meter,
actuators, relays, encoder, RFID and fingerprint readers, industrial sensors and
many more with below mentioned operational benefits.
Processor:
Co controller:
Digital IO
Analog IO
Wired Connectivity
Wireless connectivity:
Protocol:
Security:
and WAPI
number generator (RNG)
Power supply
Enclosure:
Indino main block which supporting 8x 24v isolated DIgital INPUT and 4x 24V digital OUTPUT / PWM enabled with WIFI /BLE , RS232,RS485 communication and RTC , SDCARD for real time Data stamping.
Add On Modular blocks for the Indino , for expanding the Analog IO (0-10V/4-20ma), 1x RTD , 2x Thermocouple and supporting RS232, RS485 and 4x DO/PWM.
Add On Modular blocks for the Indino , for expanding the Ethernet IO and supporting supporting 6x 24v isolated DIgital INPUT and 5x 24V digital OUTPUT
Add On or independent blocks , for expanding the GPRS IO and supporting 8x 24v isolated DIgital INPUT and 4x 24V digital OUTPUT / PWM enabled with RS232,RS485 communication and RTC , SDCARD for real time Data stamping.
Add On or independent blocks , for expanding the XBee IO and ssupporting 8x 24v isolated DIgital INPUT and 4x 24V digital OUTPUT / PWM enabled with RS232,RS485 communication and RTC , SDCARD for real time Data stamping.
Add On or independent blocks , for expanding the LoRA IO and supporting 8x 24v isolated DIgital INPUT and 4x 24V digital OUTPUT / PWM enabled with RS232,RS485 communication and RTC , SDCARD for real time Data stamping.
Achieve higher productivity and utilization with Industry 4.0 features of Automated Machine Fault Altering system. Enabled with Preventive Analytics using Machine Learning reduces downtime and improves efficiency. Supports Industry Standard Interfaces sensors and interfaces, protocols. Alerts variety of devices and customizable dashboards
Deep Analytics based system, provide insight into prevailing conditions on the Production Floor. Ingests and process data from multiple sensors to deliver actionable intelligent reports. Enable management of large work force with minimal Technical expertise.
Also Supporting interface for WiFi / BLE and Ethernet communication
Also Supporting interface for WiFi / BLE and Ethernet communication
Also Supporting interface for WiFi / BLE and Ethernet communication
The open-source Arduino Software (IDE) makes it easy to write code and upload it to the board. It runs on Windows, Mac OS X, and Linux. The environment is written in Java and based on Processing and other open-source software.
integrated development platform (IDP) for developing and debugging all AVR® and SAM microcontroller applications. The Atmel Studio 7 IDP gives you a seamless and easy-to-use environment to write, build and debug your applications written in C/C++ or assembly code .(www.atmel.com)'ll check this with
The ArduinoTM compatible compiler for LabVIEWis a compiler that will take a LabVIEW program and compile and download it to ArduinoTM compatible targets. The downloaded code will execute embedded and standalone on the Arduino target (www.tsxperts.com)
ThingSpeak™ is an IoT analytics platform service from MathWorks®, the makers of MATLAB® and Simulink®. ThingSpeak allows you to aggregate, visualize, and analyze live data streams in the cloud. ThingSpeak provides instant visualizations of data posted by your devices or equipment. Execute MATLAB code in ThingSpeak, and perform online analysis and processing of the data as it comes in.
At no extra cost every Dataloggger is shipped with Plug and Play Configuration Manager, that enable configuration of all Input-Output ports across Analog- Digital interfaces and also Communication parameter. Configuration Manager is designed to be operated with minimal training and technical expertise
SoapBox Snap is a free and open source PC-based automation platform. It includes a ladder logic editor and a “soft” runtime right out of the box. The ladder editor includes standard instructions like contacts, coils, timers, counters, rising edge and falling edge, and set/reset instructions.
RDL OEM (Original Equipment Manufacturer) that designs and builds a product based on their own specification, and then sells it to another company for branding and distribution.
OEM Minimum order quantity 100 to 500 no's.
Quick adaptability to any kind of customization requirements be it structural, functional, or Look-and-feel. Seamless transformation made possible for every possible aspects to tailor the standard products to realise your creative imagination.
Highly Flexible, competitve, and economical solutions encompassing support for wide variety of business domains where customers are sure of getting delightful business deals.
Functional Block Diagram
Step 1 Make the connection as shown in the above diagram
Step 2 copy the code and change the required parameter .
Step 3 Execute code
Step 4 watch the expected result at Cloud MQTT server.
Test Setup
Accessing VFD through MODBUS and updating clouds Via MQTT GPRS code for your reference
#include <IndinoDI.h> // Indino Library
/* Cloud initialisation */
char data1[20];
char* host = "m16.cloudmqtt.com";
//char* host = "52.3.184.147";
char* port = "16997";
char* username = "eoszmzsz";
char* password = "at1yeUD1pERj";
char* topic = "VFD";
char *APN = "www"; //bsnl
/* Modbus initialisation */
uint8_t funCode = 0x04; //Read holding register
uint8_t slave_id = 1; //Set the slave id
uint16_t start_addr = 16130; //Address to read frequency of the VFD
uint16_t len = 2; //Datatype is 32-bit Float for MFR 2810
uint16_t data[2] = {0};
uint8_t freq_hex_bytes[4] = {0};
float frequency = 0;
uint32_t VALUE;
void setup()
{
Serial.begin(9600);
Serial3.begin(9600);
Indino_Modbus_Master_Init(); //Modbus initialisation
delay(2000);
pinMode(41, OUTPUT);
delay(2000);
Serial.println("Start..");
power_on(APN); //Switch on the modem
delay(1000);
}
/* Main Loop */
void loop()
{
start_addr=start_addr-1;
Indino_Modbus_Master_Read_Raw(funCode, slave_id, start_addr, len, data); //Modbus reading
Serial.print(data[0]);
Serial.println(" Hz");
sprintf(data1,"Frequency=%iHz",data[0]);
Indino_GPRS_Upload_MQTT(data1, APN, host, port, username, password, topic); //Uploading data to cloud using MQTT
delay(3000); // Delay
}
Share this post:
We love our customers, so feel free to visit during normal business hours.
RDL Technologies PVT LTD, 4th floor , oberle Tower , Balmatta, Mangalore, KA 575002, IN
Mon | 09:00 am – 05:00 pm | |
Tue | 09:00 am – 05:00 pm | |
Wed | 09:00 am – 05:00 pm | |
Thu | 09:00 am – 05:00 pm | |
Fri | 09:00 am – 05:00 pm | |
Sat | Closed | |
Sun | Closed |
Copyright © 2025 RDL Technologies Pvt Ltd - All Rights Reserved.
Powered by RDL