Raspberry Pi Basics: Debugging Sensors via I2C

Raspberry Pi Basics: Debugging Sensors via I2C

Click the above “blue text” to follow the DF Maker Community and become a technical beauty lover together! Now that we are gradually familiar with the Raspberry Pi, we can start doing some simple experiments! Among digital sensors, the most commonly used are I2C communication sensors. The I2C (Inter-Integrated Circuit) bus is a two-wire serial … Read more

Exploring CircuitPython: Simplifying Hardware Programming

Exploring CircuitPython: Simplifying Hardware Programming

Introduction CircuitPython is a Python interpreter designed for embedded systems, aimed at providing a simple and fun way for beginners and professionals to program hardware. Developed by Adafruit, it is an open-source project that seeks to lower the barriers to hardware programming, enabling more people to get involved in the development of IoT and embedded … Read more

How to Use Arduino and Python to Save Sensor Data to a Database System

How to Use Arduino and Python to Save Sensor Data to a Database System

Source: intorobotics Produced by Smart Workshop Contributors: Lotus “ Free source code tutorials are always readily available, so it is often useful to think about how to creatively apply source code for free. Whether you are looking for professional protocols or engineering solutions, both lines of thought can be greatly beneficial, allowing you to apply … Read more

Easily Control Your Raspberry Pi Hardware with GPIO Zero: Efficient GPIO Pin Operations

Easily Control Your Raspberry Pi Hardware with GPIO Zero: Efficient GPIO Pin Operations

Introduction to GPIO Zero GPIO Zero is a simple and easy-to-use Python library designed for operating GPIO pins on the Raspberry Pi. Developed and maintained by Ben Nuttall and Dave Jones, it aims to simplify interaction with hardware, allowing developers to easily connect sensors, actuators, LEDs, and other devices to the Raspberry Pi to achieve … Read more

Running Python on Raspberry Pi: A Beginner’s Guide

Running Python on Raspberry Pi: A Beginner's Guide

To allow beginners to run Python code anytime and anywhere, we added the feature to run Python code on our public account shortly after its creation. Today, let’s take a look at the hardware that has been silently serving our public account! This is the hardware board that is only the size of a credit … Read more

Building an Open Source Self-Driving Platform with DonkeyCar and Python

Building an Open Source Self-Driving Platform with DonkeyCar and Python

In the field of self-driving technology, DonkeyCar, as an open-source platform based on Python, allows enthusiasts to build their own self-driving cars at a low cost. This project not only helps beginners understand the basic principles of autonomous driving but can also serve as a practical platform for artificial intelligence and machine learning. This article … Read more

Open Source IoT Gateway: A Powerful Tool for IoT Device Integration Using Python to Develop ThingsBoard Gateway

Open Source IoT Gateway: A Powerful Tool for IoT Device Integration Using Python to Develop ThingsBoard Gateway

Hello everyone! I’m Cat Brother, and today I want to take you on an exciting journey to explore a super cool tool: ThingsBoard Gateway! It is an open-source IoT gateway that can easily connect various IoT devices to the ThingsBoard platform. Even better, it is developed using Python, which means we can leverage Python’s powerful … Read more

Integrating IoT Devices with ThingsBoard Gateway Using Python

Integrating IoT Devices with ThingsBoard Gateway Using Python

The Internet of Things (IoT) has been gaining traction for quite some time now, and everyone wants to connect their devices and push data to the cloud. The challenge lies in the variety of devices and protocols available. How can we integrate all these devices in a complex IoT environment? Don’t worry, today we will … Read more

How to Backup System Software on Eq Mini PC with Windows 11

How to Backup System Software on Eq Mini PC with Windows 11

[Windows] Configure miniPC to Boot on Power [Tutorial] Enable SSH Server Service on WIN11 Install winget https://learn.microsoft.com/en-us/windows/package-manager/winget/#install-winget Note The winget command line tool is only supported on Windows 10 1709 (version 16299) or later. The winget tool is not available until you log in to Windows for the first time (this triggers the Microsoft Store … Read more

A Comprehensive Guide to gpiozero: A Raspberry Pi GPIO Control Library in Python

A Comprehensive Guide to gpiozero: A Raspberry Pi GPIO Control Library in Python

gpiozero: A Raspberry Pi GPIO Control Library in Python In the field of embedded development, the Raspberry Pi is a very popular development board. However, directly manipulating GPIO often requires handling many low-level details, which deters many developers. Until I encountered the gpiozero library, which made GPIO control so simple and elegant, it felt like … Read more