KumoConnect is an enterprise-ready IoT platform offering multi-protocol ingestion, hierarchical organization management, automated data-source billing, and real-time dashboard analytics.
Everything you need to orchestrate connected devices, ingest high-throughput parameters, and audit monthly usage fees.
Flexible tenancy levels separating Superusers, Admin accounts, Sub-admins, and Users. Parent profiles can monitor and manage resources downstream.
Ingest telemetry using clean HTTP query endpoints or publish payloads directly over MQTT brokers using standard JSON schemas.
Superuser dashboard allows customizing pricing models. Bill organizations by flat monthly packages or per active parameter (Data Source).
Embedded trigger scanners intercept incoming sensor fields and instantly dispatch in-app notifications if telemetry values exceed thresholds.
Getting data into the cloud should not be complicated. Connect physical microcontrollers (like ESP32 or Raspberry Pi) to our platform via standard requests.
curl -G "http://127.0.0.1:8000/senddata" \ --data-urlencode "u=parag3" \ --data-urlencode "d=XLwonr3MrOSnB4S" \ --data-urlencode "voltage=230" \ --data-urlencode "current=4.8"
import paho.mqtt.publish as publish
import json
payload = {
"uname": "parag3",
"devid": "XLwonr3MrOSnB4S",
"voltage": 230,
"current": 4.8
}
publish.single(
topic="django/mqtt",
payload=json.dumps(payload),
hostname="localhost",
port=1883
)
{
"uname": "parag3",
"devid": "XLwonr3MrOSnB4S",
"voltage": 230,
"current": 4.8,
"ts": "20260616120000" // Optional timestamp
}
Say goodbye to unpredictable server management contracts. Our platform implements an automated billing engine where admins are billed based on the number of monitored parameters (Data Sources) configured.
* A "Data Source" is defined as an individual field/parameter sent by a device (e.g. temperature, humidity are counted as 2 data sources). Only Admins are billed; end-users monitoring data do not receive invoices.