Virtual Dial

Virtual Dial

来自 Citilab Edutec

Boards
主板:

Citilab ED1

Component/s
配件:

Potentiometer
This activity is part of the Citilab Course. Check it out!

Virtual Dial

Potentiometer

  • In this example we will use the potentiometer, a component that allows us to regulate the voltage level that can be read on an analog input pin.

Potentiometer

  • It has three terminals: one for the power input (5V), another for ground (GND) and the last one for the output voltage.

internal potentiometer

  • It works as a voltage divider: the output will give a voltage value depending on the position of the dial (the closer to the power pin, the higher the value).

Connection and reading

  • To connect it to the board you will need to use one of the analog pins.

  • It must be connected following the same color scheme, i.e. red with red, black with black, etc.

    ED1 analog connection

  • Once connected, we can find out its value using the read analog pin _ block, while specifying the pin number where we have connected it.

Analog reading block

Challenge 1: Make a small program that displays the value read from the potentiometer

Challenge

Solution to challenge 1

Turtle Library

  • In addition to the numerical value, we will try to represent the movement of the potentiometer on the screen with a "virtual dial".

  • For this we will use the Turtle library, which allows you to draw on the screen in a way similar to the language LOGO and of course, as in Scratch).

Turtle library

Draw a line

  • To be able to draw a line, the following blocks should be used:
  • home/go to x 0 y 0: to start from the center of the screen.
  • set pen color to: select a color (default is black).
  • pen down.
  • point in direction _: point in the desired direction before drawing the line. (return home includes points in direction 0).
  • move _: number of pixels to move.

Draw a line Line on screen

Challenge 2: Find the formula to go from the analog input value range (0-1023) to the direction range (0-360º)

Challenge

Solution to challenge 1

  • Once we have the formula we can use it to vary the direction of the line according to the position of the potentiometer reading.

  • The blocks for fixing the pencil color and lowering it do not need to be inside the loop, they only need to be executed once before starting to draw.

  • We will take advantage of the code we had previously to display the value per screen and move the dial at the same time.

Virtual Dial

CC-BY-SA

© 来自 Citilab Edutec 2019-2022.
This work is licensed under a CC-BY-SA 4.0 license.