IoT Cloud Components

Connect your Delphi and .NET applications to leading IoT cloud platforms with native AWS IoT and Azure IoT Hub integration.

Enterprise Edition Only

IoT Cloud Platforms

Native integration with the leading IoT cloud services.

AWS IoT

Amazon AWS IoT provides solutions for Industrial, Connected Home, and Commercial applications. Connect devices to the cloud, process telemetry data, and manage device fleets with MQTT over WebSocket.

Azure IoT Hub

Microsoft Azure IoT Hub is a managed service that acts as a central message hub for bi-directional communication between your IoT application and the devices it manages. Device provisioning, telemetry, and cloud-to-device messaging.

IoT Features

Everything you need to connect your applications to IoT cloud platforms.

Enterprise-Grade IoT Connectivity

Build robust IoT solutions with native support for AWS IoT and Azure IoT Hub. Our components handle authentication, secure transport, and automatic reconnection so you can focus on your application logic.

  • MQTT over WebSocket transport
  • Device authentication and security
  • Telemetry data ingestion
  • Cloud-to-device messaging
  • Device twin support
  • Automatic reconnection with WatchDog
  • TLS 1.2/1.3 encryption
  • Cross-platform (Windows, Linux, macOS)
CLOUD DEVICE DEVICE DEVICE

Delphi AWS IoT Example

Connect to AWS IoT and subscribe to device telemetry topics.

procedure TForm1.ConnectAWSIoT;
begin
  sgcIoTAWS1.AWS.Region := 'us-east-1';
  sgcIoTAWS1.AWS.AccessKey := 'YOUR_ACCESS_KEY';
  sgcIoTAWS1.AWS.SecretKey := 'YOUR_SECRET_KEY';
  sgcIoTAWS1.MQTTClient.Host := 'xxxxx.iot.us-east-1.amazonaws.com';
  sgcIoTAWS1.Active := True;
end;

procedure TForm1.sgcIoTAWS1MQTTConnect(Sender: TObject);
begin
  sgcIoTAWS1.MQTTClient.Subscribe('device/telemetry');
end;

Start Building IoT Solutions

Download the free trial and connect your applications to IoT cloud platforms.