Month: May 2023

  • 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 Generate Combinations of the Component from Four Text Files using Python & tkinter

    This program generates a random combination of components. This can be a fun program. It creates the combination of all the components in the four list. For example; if each list contains 5 words. Then the total number of combinations would be 5 x 5 x 5 x 5 = 625 Code

  • 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…