User Profile
OlivierBloch
Iron Contributor
Joined 9 years ago
I am Principal Program Manager at Microsoft in the Azure Light Edge team, working on developer experience and advocating for Internet of Things developers. I have worked in the IoT space for as long as I remember, first as an embedded developer and consultant, then as a Technical Evangelist for Microsoft France then Microsoft Corp. I also spent 3 years in Microsoft Open Technologies, engaging with open source communities on topics going from Web and JavaScript to gaming and IoT
User Widgets
Recent Discussions
Re: Device experiences with Azure IoT Central
Hi Dalibor, sorry for the late answer ont his one If the question is still of order, I recommend you check out the device catalog. All the ones that are PnP certified should work with IoT Central seamlessly. I did a quick search for GPS in the catalog and several devices came back: https://devicecatalog.azure.com/devices?certificationBadgeTypes=PnP&searchTerm=GPS757Views0likes0CommentsRe: Cloud Property vs. Device Property
I think a good way of differentiating is by considering the following: - Cloud properties are only visible on the Cloud side (these are never sent to the device) - Device properties are accessible on both sides (Cloud and device) Transferring data between device and Cloud costs, so you should always consider how you can reduce that data transfer when and where possible. If a device doesn't need to know about information about itself (like the room or floor or building it is in), then you can use Cloud properties for these, while if the device needs that information for operating, you will want to use device properties.767Views0likes0CommentsRe: Regarding digital twin
Hi sarthak, Have you followed the instructions from this doc? https://docs.microsoft.com/azure/digital-twins/how-to-ingest-iot-hub-data If data is not flowing from your hub to your instance of ADT through an Azure Function, then you might want to check the logs of the function to see if anything went wrong there955Views1like1CommentRe: Is Raspberry PI Bullseye also supported by Defender for IoT agent installation?
Hi Sander van de Velde , The Defender for IoT micro-agent currently supports the following Linux Operating Systems (OS): Note: Yocto support will be delivered in the next release. The micro-agent can be deployed as a binary package, or as a source code that can be incorporated as part of the firmware. The customer can modify, and customize the agent as needed. RPi Bullseye is not officially supported, and the team has prioritized other platforms support for now. Requests to support any specific OS/Distro can be sent to defender_micro_agent@microsoft.com4.4KViews0likes1CommentRe: Vision AI Dev Kit integration with UWP application
The Vision AI Devkit can stream video over RTSP protocol which can be used on a local network (simple router with DHCP server and no Internet connection). See https://azure.github.io/Vision-AI-DevKit-Pages/docs/RTSP_stream/. Another option is to use the HDMI out which will display the camera with bounding boxes. If you want to use this video out in a Windows app, you can consider using a USB video capture card (that converts HDMI to USB) and use the video stream in your Windows app as if it were a regular USB camera1.1KViews0likes1CommentRe: Why I don't see "properties"-column on my Azure-IoT-Central Device?
I don't think this is possible, but certainly a great feature request for the IoT Central team. Feel free to suggest it here: https://feedback.azure.com/d365community/forum/35b59d83-f424-ec11-b6e6-000d3a4f0da01KViews0likes0CommentsRe: Why I don't see "properties"-column on my Azure-IoT-Central Device?
Note that when using the "Create default views" feature, you will only see a tile for displaying the property (even if it's writable). In order to have a tile where you can edit the property to change it on the device, you need to add a new view in the device template and select the form type ("Editing device and cloud data"). To add a new view, go to the device template, click on "Views" then select "Editing device and cloud data", then select your writable property from the list, save and publish the template, then you should see the writable property in this new Form column1.2KViews1like2CommentsRe: Integrating external webserver to IoT Central
IoT Central will allow you to export data to other apps/services or to be itself integrated into a broader application leveraging its APIs. But we'd need to know what your external web server is doing to better guide you. What's the scenario, what it is that you want your web server to keep doing and what type of integration would you need with IoT Central?1.1KViews1like0CommentsRe: Question about integrating Azure IoT Hub support middleware into FreeRTOS
Hi Ido I confirm this is the official samples code, but the actual middleware is sitting in another repository. You can find more about the middleware along with links to resources in this blog post: https://techcommunity.microsoft.com/t5/internet-of-things-blog/expanding-azure-support-for-constrained-devices-azure-iot/ba-p/2782396925Views0likes1CommentRe: Does Azure Iot support dynamic sensor assignment?
Hi Andrew Azure IoT Hub does not have a notion of "object" and "sensor". Each "thing" (we call it "device") connecting to the service has a unique identity and will send telemetry, synchronize its state and receive commands through that connection. But Azure IoT Hub is just one element of a solution and all the data and meta data from devices can be sent to a time series service like Azure Data Explorer where you can work on the data, or (and it seems this might be an even better fit for you) to Azure Digital Twins where you can create models for your data and use the graph to query that data. Azure Digital Twins allows you to describe the relationship between twins and using the graph you can create, update and delete these relationships. Learn more about this here: https://docs.microsoft.com/en-us/azure/digital-twins/how-to-manage-graph882Views0likes0CommentsRe: What's the best way for an external application to read data from IoT Hub?
Hi Sara What I would suggest is to consider how you want to read telemetry based on the type of data you want and how and where it will be consumed. IoT Hub allows to route telemetry data to different types of endpoints (Event Hub, Message Bus topics or queues, Azure Storage) which might be more suited for consumption by apps than the built-in Event Hub compatible endpoint based on your scenario and needs. Read more about his here: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-messages-d2c You can also leverage the integration with Events Grid which offers an events model (rather than messages model): https://docs.microsoft.com/azure/iot-hub/iot-hub-event-grid-routing-comparison At the end of the day there is no good or bad way of consuming data coming from devices through IoT Hub. Note that the Service SDKs for IoT Hub are designed to manage the instance of IoT Hub and manage the attached devices (provisioning, Twins, Direct Methods), but do not support telemetry (D2C) consumption because of exactly this (there is not a single way to consume messages/events from devices).943Views0likes1CommentRe: Questions about VAIDK, Shutter Options & External Trigger
Technically speaking you can do this, but The Azure Percept DK doesn't have a list of supported camera nor documentation specifically to do this as it is a dev kit designed to experience and evaluate the Azure Percept Vision camera. That said Azure Percept is using Azure IoT Edge and IoT Hub which you can work with directly, modifying modules configuration and setup and even code to use a different camera. I believe the Vision module (the one running the vision module) uses the RTSP feed from the camera, so it shouldn't be too hard to modify it. Also you can take a look a the VisionOnEdge project which makes building such projects simpler (and which can be used with the Azure Percept DK): https://techcommunity.microsoft.com/t5/internet-of-things-blog/bringing-your-vision-ai-project-at-the-edge-to-production-is-now/ba-p/22593591.5KViews0likes0CommentsRe: Ewon Flexy to Azure IoT central
It'd be great if you could share how you connected your Flexy to IoT Central considering the Ewon samples only show how to use a connection string without using DPS. IoT Central requires a ScopeID to connect a device to it. Once the connection is established, you need to setup your script so that the Flexy uses the expected MQTT topics and abides with Device Twins, Direct Methods and telemetry conventions defined by IoT Plug and Play. This sample shows how to code in C to achieve this: https://docs.microsoft.com/en-us/azure/iot-develop/tutorial-use-mqtt, and I guess you could leverage the sample to configure the Flexy so you can run commands from IoT Central.1.6KViews0likes0CommentsRe: Questions about VAIDK, Shutter Options & External Trigger
Hi Mouman, AFAIK, the VisionAI Dev Kit doesn't have sensors like motion detector for what you are trying to achieve. I recommend you take a look at Azure Percept which proposes a newer devkit which you could more easily customize to achieve your goal.1.5KViews0likes3CommentsRe: How do I get multiple records in target period?
Well, I should have waited a couple days before answering this one as I have good news that contradict my previous response :-). The IoT Central team just released an update to the APIs and now you can query devices data! https://docs.microsoft.com/en-us/azure/iot-central/core/howto-query-with-rest-api1.8KViews1like1Comment