Tag: Raspberry Pi Pico

  • How to use MG90S Servo Motor with Raspberry Pi Pico using micropython

    I have this MG90S small servo motor. It is supposed to go from 0° to 180°. Because of their low cost, they have a short range which is less than 180°. Some go to 135°, 100° or 150°. PWM signal required by servo to move. Frequency = 50HzTime Period = 0.02 Second or 20 mili…

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