Complete technical documentation for KERONE's industrial systems — installation guides, API references, integration tutorials, maintenance procedures, and software changelogs in one place.
Follow these six steps to have your KERONE system commissioned, connected, and optimised for production.
Download and install the KERONE SmartDry™ control software. Configure system parameters, establish network connectivity, and verify hardware communication with all sensors and actuators.
Read GuideSet up drying parameters, configure multi-zone temperature profiles, calibrate moisture sensors, and define process setpoints aligned with your material specifications.
Read GuideRun your first drying cycle with KERONE engineer supervision. Monitor real-time sensor data, verify temperature uniformity, and confirm product quality against target specifications.
Read GuideConnect to KERONE's cloud platform, enable remote monitoring via the SmartDry™ dashboard, and configure predictive maintenance alerts and data analytics pipelines.
Read GuideFine-tune PID parameters, implement energy-saving duty cycles, and use AI-assisted process analytics to maximise throughput efficiency and minimise specific energy consumption.
Read GuideSchedule preventive maintenance using the built-in calendar, access digital spare parts lists, and register your system for KERONE's 24-hour technical support access.
Read GuideAll technical resources organised by subject — from hardware schematics to cloud integration guides.
Hardware components, control system layouts, electrical schematics, mechanical design specifications, and P&ID diagrams for all KERONE systems.
REST API documentation, authentication methods, request/response formats, WebSocket subscriptions, and language-specific code examples.
Step-by-step installation procedures, site preparation checklists, commissioning protocols, and operator qualification requirements.
PLC programming guides, SCADA integration, HMI customisation, OPC-UA connectivity, and third-party MES/ERP system connections.
Cloud connectivity setup, real-time data streaming, remote monitoring dashboards, predictive analytics, and Industry 4.0 integration guides.
Cybersecurity protocols for industrial networks, data protection policies, regulatory compliance documentation, GMP validation guides, and safety certifications.
Preventive maintenance schedules, troubleshooting flowcharts, spare parts catalogues, service protocols, and component replacement procedures.
Energy efficiency strategies, process parameter optimisation, quality improvement methodologies, specific energy consumption benchmarks, and AI tuning guides.
Connect to KERONE's API in your preferred language. Full SDK documentation available on request.
# Connect to KERONE SmartDry™ API
import kerone_api
# Initialise client
client = kerone_api.Client(
api_key='YOUR_API_KEY',
endpoint='api.kerone.com'
)
# Retrieve live system status
status = client.get_status()
print(f"Temperature: {status.temp}°C")
print(f"Humidity: {status.rh}%")
print(f"State: {status.state}")
Connect to the KERONE API and retrieve real-time system status including temperature, humidity, and operational state.
const keroneAPI = require('kerone-sdk');
const client = new keroneAPI.Client({
apiKey: 'YOUR_API_KEY',
endpoint: 'api.kerone.com'
});
// Stream real-time sensor data
client.on('sensorUpdate', (data) => {
console.log(`Temp: ${data.temp}°C`);
console.log(`Power: ${data.kw} kW`);
});
Subscribe to live sensor data streams via WebSocket — temperature, power consumption, and alarm events in real time.
using KeroneSDK;
var client = new KeroneClient(
apiKey: "YOUR_API_KEY",
endpoint: "api.kerone.com"
);
// Set and execute a drying profile
await client.SetProfile(new DryingProfile {
TargetTemp = 150,
RampRate = 5,
HoldMinutes = 60,
CoolToTemp = 40
});
Configure and execute multi-stage drying profiles programmatically — set ramp rates, soak times, and cooldown targets via the SDK.
RESTful endpoints for system control, data retrieval, and remote configuration. All endpoints require Bearer token authentication.
Retrieve current operational state, temperature, humidity, power consumption, and active alarms for a specific system.
Initiate system operation with specified profile parameters. Validates system state and safety interlocks before executing startup sequence.
Execute controlled shutdown following proper cooldown procedures, alarm acknowledgement, and safe-state confirmation.
Retrieve historical sensor data — temperature, humidity, pressure, flow rate — with configurable date range, resolution, and channel filters.
Modify active operating profile including temperature setpoints, ramp rates, hold times, and multi-zone configurations.
Retrieve all active system alarms, warnings, and critical notifications — filterable by severity, zone, and timestamp.
Track all platform updates, new features, bug fixes, and improvements to KERONE's SmartDry™ software.
Access the complete version history going back to SmartDry™ v1.0 (2018).
Register your system to receive automatic update notifications and release notes by email.
KERONE recommends applying all security updates within 30 days of release. Major version upgrades (v4.x → v5.x) require KERONE engineer assistance. Contact your AMC manager to schedule.
Connect with KERONE engineers and other users. Share configurations, ask technical questions, and access community-contributed code snippets.
Visit ForumGet technical documentation assistance from our dedicated support team. Typical response within 4 business hours — include your system serial number for faster service.
Send EmailSpeak directly with a KERONE technical engineer for urgent integration issues, API access problems, or documentation queries. Available Mon–Sat, 9AM–6:30PM IST.
Call NowAttend KERONE operator training, PLC programming workshops, and SmartDry™ platform certification courses — available at KRDC Ambernath or on-site at your facility.
View ScheduleDownload the SDK, generate your API key, and integrate KERONE's industrial platform into your systems today. Our technical team is available to assist you.