#Azure – Creating an #AzureFunction ⚑ for #JulyOT

Hi ! In my previous post I wrote about how (Thanks to Sam), I’m on the path to learn Azure Bicep 🦾. I’m also share how I’m using Bicep to create my demo environments for for JulyOT! https://julyot.dev/ I shared a full Bicep file that, using an existing Resource Group: Create an Azure IoT Hub…… Continue reading #Azure – Creating an #AzureFunction ⚑ for #JulyOT

#Azure – Azure IoT and Bicep 🦾, creating my own resources for #JulyOT

Hi ! Last week my friend Sam helped me to understand the basic concepts of Infrastructure as a Code, and of course, we started with Bicep. You can watch the recording here: https://www.youtube.com/watch?v=NHISJBasX-o&ab_channel=MicrosoftReactor After this, I started to play around and try to figure out how to automate the creation of my required resources for…… Continue reading #Azure – Azure IoT and Bicep 🦾, creating my own resources for #JulyOT

#AzureFunctions ⚑- Pip and TLS/SSL error on Debugging with #Python πŸ

Hi! There is something wrong with my current development environment. I have an Azure Function with these dependencies: azure-functions requests Pillow numpy flask tensorflow opencv-python And I got this error when I press F5 / Run the project in local mode. > Executing task: .venv\Scripts\python -m pip install -r requirements.txt < WARNING: pip is configured…… Continue reading #AzureFunctions ⚑- Pip and TLS/SSL error on Debugging with #Python πŸ

#WioTerminal – Open / Close the #DigitalTwin Door πŸšͺ using Wio Terminal buttons and Azure IoT ☁️ + Azure Functions βš‘

Hi ! My current goal is simple: Press Wio Terminal button A will open the Azure IoT Door, press B button will close the door. A demo video is available here: https://twitter.com/elbruno/status/1457822298585669634?s=20 I already wrote about how to use the buttons, however, let’s refresh this. Using Wio Terminal Buttons We need to initialize the buttons,…… Continue reading #WioTerminal – Open / Close the #DigitalTwin Door πŸšͺ using Wio Terminal buttons and Azure IoT ☁️ + Azure Functions βš‘

#WioTerminal – Display a countdown progress bar πŸš₯ for the next #AzureIoT ☁️ refresh data call

Hi ! In today’s post I’ll share an scenario about: Display a custom progress bar in the Wio Terminal display. The progress bar is a count down until the next request to the Azure Function interacting with Azure Digital Twin. This is mostly working with strings to create a specific String() that represent the Progress…… Continue reading #WioTerminal – Display a countdown progress bar πŸš₯ for the next #AzureIoT ☁️ refresh data call

#WioTerminal – Posts to interact with a #DigitalTwin Door πŸšͺ with Azure IoT ☁️ and Azure Functions

Hi ! Here is the current set of posts on the integration between the Azure IoT door πŸšͺand my Wio Terminal. References Download Arduino IDEWiki Seeed – HistorgramWiki Seeed – loading Images Wiki Seeed – Installing the File System LibraryWiki Seed – Wifi ConnectivityGitHub – Arduino_JSONWikipedia – X BitMap

#WioTerminal – Display a #DigitalTwin Door πŸšͺ state using XBitmap with #AzureIoT β˜οΈ.

Hi ! In today’s post I’ll share an scenario about: Display the state of a door (open / closed) using an XBitmap in Wio Terminal. The door state information come from an Azure Function interacting with Azure Digital Twin. In my previous posts I wrote on how to get data from an Azure Function and…… Continue reading #WioTerminal – Display a #DigitalTwin Door πŸšͺ state using XBitmap with #AzureIoT β˜οΈ.

#WioTerminal – Parsing JSON data from an #Azure ☁️ Function !

Hi ! In today’s post I’ll share an scenario about: Invoke an Azure Function to get JSON data, and Parse the JSON data Yesterday I wrote on how to invoke an Azure Function and get JSON data for my Digital Twin scenario. The response from the function is similar to this one: { “state”: 0,…… Continue reading #WioTerminal – Parsing JSON data from an #Azure ☁️ Function !

#WioTerminal – Getting JSON data from an #Azure ☁️ Function !

Hi ! In today’s post I’ll share an scenario about: Invoke an Azure Function to get JSON data In my Digital Twin scenario, I got an Azure Function that returns the current state of a Digital Twin door. The response from the function is similar to this one: { “state”: 0, “desc”: “closed”, “source”: “blog”…… Continue reading #WioTerminal – Getting JSON data from an #Azure ☁️ Function !

#Azure – Reading configuration values in Azure Functions

Hi ! I was learning about Azure Vault and Azure Functions, and it’s been an interesting ride. This tweet summarizes this ride 😎😁😎 https://twitter.com/elbruno/status/1359917192427495426?s=20 So while I a was using Functions, I realized that at the end, we are working with WebApps. So, we have access to standard App Configurations. Note: I’ll call it standard,…… Continue reading #Azure – Reading configuration values in Azure Functions