Entradas

Mostrando entradas de junio, 2018

velocimetro con sensor ultrasonico

Imagen
en este programa haremos un velocimetro con ayuda de un sensor ultrasonico usando un archivo externo (botbook) para poder usar algunos comandos #hc-sr04.py - print distance to object in cm #(c) BotBook.com - Karvinen, Karvinen, Valtokari import time import botbook_gpio as gpio global tiempo from turtle import* t=Turtle() screen=t.getscreen() setup(900,900,0,0) screensize(900,900) colormode(255) t.speed(0) t.penup() t.goto(-800,-800) t.fillcolor("green") t.begin_fill() t.pendown() t.goto(-800,200) t.goto(800,200) t.goto(800,-800) t.goto(-800,-800) t.end_fill() t.fillcolor("black") t.penup() t.begin_fill() t.goto(-800,-800) t.pendown() t.goto(-10,200) t.goto(10,200) t.goto(800,-800) t.goto(-800,-800) t.end_fill() t.pencolor("yellow") t.pensize(5) t.penup() t.goto(0,-800) t.pendown() t.goto(0,200) t.pencolor("white") t.pensize(2) t.penup() t.goto(-780,-800) t.pendown() t.goto(-5,200)...