#Rust – Install Rust and Hello World 🌐 in #RaspberryPi

Hi ! Quick post today on how to install rust in a Raspberry Pi, and later create a hello world test app. Install Rust I’m starting this with the latest updates for Raspberry Pi OS installed. The command to install rust is this one: curl –proto ‘=https’ –tlsv1.2 -sSf https://sh.rustup.rs | sh Check the Rust…… Continue reading #Rust – Install Rust and Hello World 🌐 in #RaspberryPi

#RaspberryPi – 1st setup no monitor 📺: Wifi 📶 auto connect, SSH, rename, update, docker 🐳, rust and more! Update 2023-Jan-04

Content Create SD card using Raspberry Pi Imager Configure Wireless connection (if needed) Enable SSH (if needed) Find the IP address in your network Access via SSH Change Password (if needed) Rename the device (if needed) Expand FileSystem Update the device Install Docker Setup SSH password-less access to the Raspberry Pi Setup password-less access to…… Continue reading #RaspberryPi – 1st setup no monitor 📺: Wifi 📶 auto connect, SSH, rename, update, docker 🐳, rust and more! Update 2023-Jan-04

#RaspberryPi – Install raspi-config on Ubuntu 22.04.1 LTS

Hi ! This is my current Ubuntu version running on a Raspberry Pi 4. raspi-config is a powerful tool to manage the device settings for the Raspberry Pi. It’s included in Raspberry Pi OS, but not in the Ubuntu distro. So, if yu want to use raspi-config, follow these steps Of course, we start with…… Continue reading #RaspberryPi – Install raspi-config on Ubuntu 22.04.1 LTS

#AzureIoT – Using a Raspberry Pi @Seeedstudio Grove Sensors 👀 in an ☁ Azure IoT Edge Module

Hi ! Last week during my sessions for #JulyOT, I had several questions about how to use SeeedStudio Grove sensors and actuators in custom Azure IoT Edge modules. I’m updating my previous series of posts to how how to access to specifics sensors connected to the device and send telemetry, and more. I’m missing the…… Continue reading #AzureIoT – Using a Raspberry Pi @Seeedstudio Grove Sensors 👀 in an ☁ Azure IoT Edge Module

#RaspberryPi – Install #AzureIoT, a couple of tips to make it work

Hi ! It’s #JulyOT time, and I need to update this post. A lot of amazing IoT content here: https://julyot.dev/ And let’s go with the updated version. The base steps for this posts are described in the official page [Install or uninstall Azure IoT Edge for Linux] (see references). In the official documentation, you can…… Continue reading #RaspberryPi – Install #AzureIoT, a couple of tips to make it work

#RaspberryPi – 1st setup no monitor 📺: Wifi 📶 auto connect, SSH, rename, update, docker 🐳 and more! Update 2022-Mar-10

Content Create SD card using Raspberry Pi Imager Configure Wireless connection (if needed) Enable SSH (if needed) Find the IP address in your network Access via SSH Change Password (if needed) Rename the device (if needed) Expand FileSystem Update the device Install Docker Setup SSH password-less access to the Raspberry Pi Setup password-less access to…… Continue reading #RaspberryPi – 1st setup no monitor 📺: Wifi 📶 auto connect, SSH, rename, update, docker 🐳 and more! Update 2022-Mar-10

#RaspberryPi – 1st setup no monitor 📺: Wifi 📶 auto connect, SSH, rename, update, docker 🐳 and more! Update 2021-Dec-26

Content Create SD card using Raspberry Pi ImagerConfigure Wireless connection (if needed)Enable SSH (if needed)Find the IP address in your networkAccess via SSHChange Password (if needed)Rename the device (if needed)Expand FileSystemUpdate the deviceInstall DockerSetup SSH password-less access to the Raspberry PiSetup password-less access to remote work with docker 🐳Run Docker 🐳 commands without sudo Hi!…… Continue reading #RaspberryPi – 1st setup no monitor 📺: Wifi 📶 auto connect, SSH, rename, update, docker 🐳 and more! Update 2021-Dec-26

#Event – Resources used on the “TinyML and SkySharks 🦈🦈🦈” at @netcoreconf 2021

Hi ! Another great time with my friends from NetCoreConf. I got the perfect excuse to book a flight to Spain, to be IRL next time. This time, I shared some insights about Machine Learning on devices, really tiny devices. As usual now it’s time to share the resources Slides Source Code Source Code is…… Continue reading #Event – Resources used on the “TinyML and SkySharks 🦈🦈🦈” at @netcoreconf 2021

#RaspberryPi – Listing nearby BLE devices using the onboard #bluetooth sensor

Hi ! I done this at least, 4 different times, and I never wrote it down. So, here it is. import json from bluepy.btle import Scanner try: # based on http://ianharvey.github.io/bluepy-doc/scanner.html#sample-code scanner = Scanner() devices = scanner.scan(10.0) devices_m = [] for dev in devices: name = “” power = “” for (adtype, desc, value) in…… Continue reading #RaspberryPi – Listing nearby BLE devices using the onboard #bluetooth sensor

#AzureIoT – Create an Azure IoT Module from a Custom Vision 👀 project – Full Series

Hi ! It’s time to close the the series of posts about how to create an Azure IoT Edge module that run a Custom Vision exported project from https://customvision.ai. And the step-by-step posts: References Azure Custom VisionAzure Custom Vision DocumentationAzure IoT ToolsDeploy your first IoT Edge module to a virtual Linux device