IoT Cloud Components
Connect your Delphi and .NET applications to leading IoT cloud platforms with native AWS IoT and Azure IoT Hub integration.
Connect your Delphi and .NET applications to leading IoT cloud platforms with native AWS IoT and Azure IoT Hub integration.
Native integration with the leading IoT cloud services.
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.
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.
Everything you need to connect your applications to IoT cloud platforms.
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.
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;