Vistas de página en total
jueves, 22 de septiembre de 2011
miércoles, 14 de septiembre de 2011
Hola Mundo en LCD 16x2
A continuación mostramos el programa de ASM para hacer que aparezcan las palabras "Hola Mundo" en un LCD de 16x2 (16 caracteres y 2 lineas):
Principal
call LCD_Inicializa
call Retardo_1ms
movlw 'H'
call LCD_Caracter
movlw 'o'
call LCD_Caracter
movlw 'l'
call LCD_Caracter
movlw 'a'
call LCD_Caracter
movlw ' '
call LCD_Caracter
movlw 'M'
call LCD_Caracter
movlw 'u'
call LCD_Caracter
movlw 'n'
call LCD_Caracter
movlw 'd'
call LCD_Caracter
movlw 'o'
call LCD_Caracter
goto $
include <LCD_4BIT.inc>
include <RETARDOS.inc>
;====================================================================
END
Principal
call LCD_Inicializa
call Retardo_1ms
movlw 'H'
call LCD_Caracter
movlw 'o'
call LCD_Caracter
movlw 'l'
call LCD_Caracter
movlw 'a'
call LCD_Caracter
movlw ' '
call LCD_Caracter
movlw 'M'
call LCD_Caracter
movlw 'u'
call LCD_Caracter
movlw 'n'
call LCD_Caracter
movlw 'd'
call LCD_Caracter
movlw 'o'
call LCD_Caracter
goto $
include <LCD_4BIT.inc>
include <RETARDOS.inc>
;====================================================================
END
sábado, 3 de septiembre de 2011
Actividad 4 - Amplificadores Operacionales (1° Parte)
Esta actividad está compuesta por 2 partes:
1° Parte: Amplificador Inversor:
Primero tuvimos que hacer el siguiente circuito en el protoboard:
Así es como nos quedo el circuito ya armado:
1° Parte: Amplificador Inversor:
Primero tuvimos que hacer el siguiente circuito en el protoboard:
Así es como nos quedo el circuito ya armado:
Suscribirse a:
Entradas (Atom)