-
#Arduino – Arduino library for Azure IoT โ๏ธ, and how I used to feed my ๐ฟ๏ธ๐ฟ๏ธ๐ฟ๏ธ
Hi ! Here are some good news for Azure IoT and Arduino developers: we have a new library to work with Azure IoT in a simple way! The Azure IoT SDK for C library When you add this library to your Arduino IDE, youโre getting a fully tested set of APIs, documentation, and sample implementations… โ read more
-
#WioTerminal – working with servos ๐ฆพ @code and @PlatformIO_Org
Hi ! Today let’s review another started project, this scenario is to use a grove servo motor with Wio Terminal. We will review the code created with PlatformIO Labs in Visual Studio Code. The app is very simple When user press button A the servo motor will rotate to 0 degress and when user press… โ read more
-
#WioTerminal – connecting to Wifi ๐ถ, online information in TFT ๐บ @code and @PlatformIO_Org
Hi ! I just migrated a sample Wio Terminal project from Arduino IDE to PlatformIO Labs in Visual Studio Code, and I think is a good idea to chat write it. The app will connect the device to a Wireless network and it will display the connect process progress on the device screen. Working demo… โ read more
-
Jump box part 1: Secure access to private cloud VM using Azure Bastion
Originally posted on Sander van de Velde: When you work with Azure and Azure IoT, at some point you have to think about a jump box (aka jump server). This is a device in your network that supports access to other devices in a secure way. Yes, you can probably access devices in some sort… โ read more
-
#WioTerminal – @code and PlatformIO, working with libraries in a zero-to-hero project โ๏ธ๐ง๏ธโ๏ธ
Hi ! Yesterday, I shared a very simple project created with PlatformIO Labs in Visual Studio Code for a Wio Terminal. If you are used to work with the Arduino IDE, there are a couple of notes here that may help. Let’s start with a very simple program: Check RTL8720 Firmware Version This program is… โ read more
-
#WioTerminal – Visual Studio Code and PlatformIO rocks ! ๐ค @code @PlatformIO_Org
Hi ! While working with Arduino or embedded systems, tools are a great part of the developers experience. PlatformIO Labs is an amazing set of tools for embedded systems, and it also works like a charm with Wio Terminal. A user-friendly and extensible integrated development environment (IDE) with a set of professional development instruments, providing… โ read more
-
#Event – Resources used on “My experiences adapting a Digital Twin #WebGL project for #HoloLens2” @globxrcommunity
Hi ! I really enjoyed sharing my experience in this session My experiences adapting a Digital Twin WebGL project for HoloLens2 Now it’s time to share the resources I used during the session. Slides Video Recording โ read more
-
#Event – Using #AzureIoT to feed my squirrels ๐ฟ๏ธwith a #WioTerminal @MSFTReactor
Hi ! During the last couple of months, I’ve having fun with my new friends at home: ๐ฟ๏ธ๐ฟ๏ธ๐ฟ๏ธ. These little ones, are extremelly funny, and they literally don’t care about the cold ๐ฅถโ๏ธโ๏ธ. So, I decided to help them and build an Automatic Feeder using Azure IoT, a Wio Terminal and maybe some more devices.… โ read more
-
#Tools – Sorting lines and text ๐in #Notepad++
Hi ! I’m a bug fan of Notepad++. I’ve using it for years, and it’s my prefered tool for most of my simple text processing activities. For more complex stuff, I move to Visual Studio Code ๐. Reading about new features in the latest update, I realize that I can sort lines in Notepad++ !!!… โ read more
-
Captura de excepciones en ASP.NET usando Log4Net
Originally posted on mteheran.dev: Log4net es una muy buena libreria para hacer logging de errores y eventos en nuestra aplicaciones de una manera muy sencilla. Para comenzar con Log4Net debemos primero agregar el nuget?nuget package: dotnet add package log4net Luego debemos incluir el archivo log4net.config, el cual contiene toda la configuracion de como queremos guardar… โ read more
-
#Event – Global AI Bootcamp Toronto 2022, Call for Speakers open ! ๐ฌ๐จ๏ธ๐ฌ
Hi ! The Global AI Bootcamp is a free one-day event organized across the world by local communities that are passionate about artificial intelligence on Microsoft Azure. Join us for the Toronto edition on January 14-15 2022! The event takes place on January 14-15th, 2021 with venues on every continent. The Global AI Bootcamp is… โ read more
-
#Event – Resources for the “Detecting faces with a Drone and AI” at MCT West Africa Cloud Bootcamp @MctwaB
Hi ! I had an amazing time with the MCT West Africa Cloud Bootcamp team talking about drones, face detection and Artificial Intelligence. And, as usual it’s time to share the source code and more resources. Source Code The full set of demos is available here. Recording coming soon ! The experience was great, I’m… โ read more
-
#Event – My experiences adapting a Digital Twin #WebGL project for #HoloLens2 @globxrcommunity
Hi ! Next week I’ll be joining the Global XR Conference, sharing my experiences about: My experiences adapting a Digital Twin WebGL project for HoloLens2 The evolution of this one: If you want to know more, please check the session details. And also, check the complete agenda. There are +70 sessions, including great content, and… โ read more
-
#WioTerminal – Training an ๐ฃ๏ธ audio recognition module. Running the model on the Device โฏ๏ธ
Hi ! 3rd post, to achive a simple goal: Use Wio Terminal microphone to recognize wake up words and open or close the Azure IoT Door ๐ช So, let’s start. Import samples and setup Arduino IDE In my previous post I explained how to record audio data and how to train the model in Edge… โ read more
-
Conectando .NET con ApsaraDB
Originally posted on mteheran.dev: Esta es una guรญa en la que aprenderemos a conectar una API con ApsaraDB/postgreSQL 1. creamos una nueva API usando el comando dotnet new webapi 2. Agregamos los nugets para Entity framework y PostgreSQL dotnet add package Microsoft.EntityFrameworkCore dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL 3.ย Creamos la clase TodoItem, TodoItem.csย namespace ApiPostgre; public class… โ read more
-
#WioTerminal – Training an ๐ฃ๏ธ audio recognition module. Edge Impulse for Arduino step-by-step and optimizations
Hi ! 2nd post, to achive a simple goal: Use Wio Terminal microphone to recognize wake up words and open or close the Azure IoT Door ๐ช So, let’s start. Edge Impulse As I mentioned, I’ll use Edge Impuse, to to train the voice recognition module. Based on my previous posts, I recorded 30 audio… โ read more
-
[TIP] Script para lanzar multiples procesos en una misma “Windows Terminal”
Originally posted on Juanlu, ElGuerre: Ejemplo de ejecucรญon de distintos Microservidios Dapr A modo de tip, hoy quiero comentar una simple pero potente ventaja de la Windows Terminal, en concreto, poder ejecutar varios procesos en una misma ventana. Bien con diferentes tabs, o bien con distintas secciones/divisiones. En particular, en el ejemplo de la imagen… โ read more
-
#Video ๐ฆ – Testing Morph transitions while edit videos in #PowerPoint
Hi ! Ok, more tips of video editing using PowerPoint. Please read my previous posts for the context on how to use these scenarios. I’m a big fan of Microsoft Morph transition, so I was wondering if the I will have some amazing also working with slides. You can reach your own conclusions. In the… โ read more
-
#Video ๐ฆ – Concatenate 2 videos, trim content, add transitions and more using #PowerPoint ๐ผ๏ธ without a video editing tool
Hi ! Ok, more tips of video editing using PowerPoint. Please read my previous post for the context on how to use these scenarios. And, disclaimer: even if we can do this, Microsoft PowerPoint is not the best tool to do this. Trim Video content 1st scenario is about selecting specific start and end time… โ read more
-
#WioTerminal – Training an ๐ฃ๏ธ audio recognition module. ๐๏ธRecord audio samples for training
Hi ! I think this may take more than 1 post, however the goal is simple: Use Wio Terminal microphone to recognize wake up words and open or close the Azure IoT Door ๐ช. So, let’s start. Edge Impulse I’ll use Edge Impuse, to to train the voice recognition module. I talk about Edge Impulse… โ read more