Next week, I am going to be hosting a webinar with Kinvey. Embarcadero and Kinvey have partnered together to make building connected apps using Bluetooth and backend services even easier.
Today, I thought I would provide a sneak peak on what we are going to cover.
The webinar will focus on the following technologies:
- Bluetooth LE
- BaaS features such as TBackendStorage, TBackendPush, TBackendQuery, TBackendUsers and more using Kinvey
- Parallel Programming
and lots of other cool features.
Here is a small parallel programming code snippet from the webinar.
//storing continuous heartrate data in the cloud while using the app
procedure TfrmHeartMonitor.SaveinBackground; var API: TBackendStorageAPI; LJSON : TJSONObject; ACreatedObject: TBackendEntityValue; RecordedTime: string; begin RecordedTime:= FormatDateTime(' mm/dd/yyyy hh:nn:ss', Now); API := BackendStorage1.CreateStorageAPI; LJSON := TJSONObject.Create; LJSON.AddPair('bpmlog', lblBPM.Text); Timer1.Enabled := True; TTask.Run( procedure begin API.CreateObject('heartratecloud', LJSON, ACreatedObject); API.Free; end) end;
This is going to be an exciting webinar, and I am looking forward to seeing you there. You can register by clicking on the banner below:
Download your 30-day trial now!!