Category: Raspberry Pi Pico
-
Conditional Statements in MicroPython on Raspberry Pi Pico
Conditional statements in MicroPython on Raspberry Pi Pico are used to make decisions based on certain conditions. They allow us to execute a block of code only if a certain condition is true, or to execute a different block of code if the condition is false. In MicroPython, we use the if, elif, and else…
-
Variables and Data Types in MicroPython on Raspberry Pi Pico
Variables and data types are fundamental concepts in programming. In MicroPython, just like in any programming language, variables are used to store data values and data types define the kind of data that can be stored. In this tutorial, we will explore variables and data types in MicroPython on Raspberry Pi Pico. Variables in MicroPython…
-
How to Read internal temperature sensor of Raspberry Pi Pico using Thonny IDE
The internal temperature sensor of RP2040 is read using micropython. The Thonny IDE is used in Windows environment. The temperature sensor is connected to Channel number 4 of the ADC. But since this is a rather small implementation using Thonny IDE, it does most of the interfacing related code in the background. Code
-
How to setup Raspberry Pi Pico using Thonny IDE on windows and Blink onboard LED
First you have to install micropython on your raspberry pi pico board. Follow the steps shown in the video. To blink the onboard LED you can follow these steps: That’s it! You have successfully blinked the onboard LED of Raspberry Pi Pico using Thonny IDE on Windows.
-
Raspberry Pi Pico
This board is using an RP2040 microcontroller. Which is using a dual-core arm cortex m0+ processor. The speed of the clock signal can be changed on the fly up to 133MHz. The Pico board is castellated so that you can mount this board directly on your PCB. This board also has options for mounting male/female…