Category: Development Kit
-
Formatting strings in MicroPython on Raspberry Pi Pico
String formatting is an essential part of programming in any language, including MicroPython on Raspberry Pi Pico. It allows you to insert variables or values into a string and create more complex and dynamic output. In this blog post, we will explore the different methods for formatting strings in MicroPython. For example: Output: My name…
-
Splitting strings in MicroPython on Raspberry Pi Pico
Strings are an essential part of any programming language, and MicroPython on Raspberry Pi Pico is no exception. They can contain a sequence of characters and can be used for a variety of purposes, from storing user input to displaying information on the screen. One of the useful operations that can be performed on strings…
-
Concatenating Strings in MicroPython on Raspberry Pi Pico
In programming, concatenation is the process of combining two or more strings into a single string. This operation is commonly used in MicroPython on Raspberry Pi Pico to create dynamic messages and strings that can be used in various applications. In this blog post, we will explore the concept of string concatenation in MicroPython and…
-
String manipulation in MicroPython on Raspberry Pi Pico
String manipulation is a common task in programming, including in MicroPython on Raspberry Pi Pico. It involves modifying, searching, and extracting data from strings. In this blog post, we will explore string manipulation techniques in MicroPython and how to use them effectively. Modifying Strings In MicroPython, strings are immutable, which means that once a string…
-
Understanding string data types in MicroPython on Raspberry Pi Pico
Strings are one of the most commonly used data types in programming, including in MicroPython on Raspberry Pi Pico. In this blog post, we will explore the concept of string data types in MicroPython and how to work with them. A string is a sequence of characters enclosed within single or double quotes. It can…
-
Introduction to strings in MicroPython on Raspberry Pi Pico
Strings are a fundamental data type in programming, and they are no exception in MicroPython on Raspberry Pi Pico. A string is a sequence of characters enclosed in single or double quotes. Strings are used to represent text in programs, and they can be manipulated in various ways to achieve different results. In this blog…
-
How to Blink LED on Mini STM32 v3.0 Discovery Board Using STM32CubeIDE
Step 2: Configure GPIO Pins In the Project Explorer pane, expand the “Src” folder and open the “main.c” file. Scroll down to the main() function and add the following code to configure the GPIO pins: This code configures pin 2 on GPIOA as a push-pull output pin with no pull-up or pull-down resistors and low…
-
How to setup NodeMCU on Arduino IDE
NodeMCU is an open-source firmware and development board that is based on the ESP8266 Wi-Fi module. It is a popular platform for Internet of Things (IoT) projects due to its low cost, ease of use, and versatility. In this article, we will discuss how to set up NodeMCU on Arduino IDE. Step 1: Install Arduino…
-
How to setup C/C++ SDK of Raspberry Pi Pico W On Raspberry Pi Model 3b+
The C/C++ SDK has development tools for both development boards. There are various methods of the SDK. You can use this in Windows, MAC etc. But the easiest and simplest method is the use of Raspberry Pi itself. Step 1: Follow Chapter 1 of the Getting Started with Raspberry Pi Pico https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf Step 2: Follow…
-
How to view PDF in Raspberry Pi model 3b+
Both Okular and QPDF are great PDF viewers that can be used on a Raspberry Pi Model 3b+. Okular is a graphical application that is easy to use and has a wide range of features, while QPDF is a command-line tool that is lightweight and can be used to quickly view PDF files. Regardless of…