Entradas

Mostrando entradas de octubre, 2025

SERVOMOTOR PARTE1

Imagen
PARTE1: MONTAJE Realice en WOKWI el siguiente montaje virtual. El ejercicio es INDIVIDUAL Debe incluir el LOGO DE WOKWI y debe insertar su nombre tal como se indica en el modelo. Una vez realizado el montaje avise al profesor. PARTE 2 ALGORITMO Copie y pegue el algoritmo, pero debe organizarlo de manera lógica. ''' JOHN F. KENNEDY D.E.I Created by: Date created: Date modified: Description: Estudio del SERVOMOTOR activado por potenciómetro. ''' #Libraries from machine import PWM, Pin, ADC import utime # VARIABLES DECLARATION #Potenciometer: Analog Digital Converter adc = ADC(2) #Servomotor s = PWM(Pin(0)) s.freq(50) #LOOP while True: potenciometer = int(adc.read_u16()*180/65535) print(potenciometer) #Time in ON ton=(potenciometer+45)*100000/9 s.duty_ns(int(ton)) utime.sleep_ms(200)

GRADO UNDÉCIMO MATPLOTLIB PARTE 1

Imagen
Desarrolle los siguientes ejercicios: RETO FINAL: Seleccione un tema que pueda representarse en graficas similares a las aquí presentadas. Debe indicar la fuente de los datos.

RE10INT1

Imagen
EJERCICIO 1 EJERCICIO 2 Realice un nuevo diagrama de flujo con los datos del algoritmo.

OOP

Imagen
EJERCICIO 1 DE PROGRAMACION ORIENTADA A OBJETOS Parte 1: Trancriba y simule el siguiente algorimo. Una vez finalice, avise al profesor.

OLED AND RASPBERRY PI PICO 1 Exercise 1

Imagen

SIMULATION ANALYSIS OF FINAL

Imagen
'' COLEGIO JHON F. KENNEDY D.E.I By created: Date created: Date modified: Description: analysis of final annual grades ''' nom = str(input("Ingrese nombre completo: ")) asig= str(input("Ingrese nombre de la asignatura: ")) curs=str(input("Ingrese curso: ")) trim = int(input("Registre número entero del Trimestre: ")) while trim == 3: nuno =int(input("Ingrese el número de notas que tiene hasta el momento: ")) n1 = float(input("Ingrese nota 1: ")) n2 = float(input("Ingrese nota 2: ")) n3 = float(input("Ingrese nota 3: ")) n4 = float(input("Ingrese nota 4: ")) n5 = float(input("Ingrese nota 5: ")) n6 = float(input("Ingrese nota 6: ")) n7 = float(input("Ingrese nota 7: ")) n8 = float(input("Ingrese nota 8: ")) n9 = float(input("Ingrese nota 9: ")) n10= float(input("Ingrese nota 10: ")) n11= float(input("Ingrese no...