#wwwhotmailcom

Diagrama DESCRIPCIÓN DE COMPONENTES Y SUS FUNCIONES Memoria: contiene el conjunto de instrucciones a ejecutarse (programa) así como también pueden ser almacenados en la misma, datos temporales. PC (Program Counter o Contador de Programa): registro contador que lleva la secuencia del programa. Contie…
#include <stdio.h> #include <conio.h> void main(){ int memoria[5] = {34,65,24,76,43}; int registro = 0; int registro1 = 0; int registro2 = 0; int contador = 0; while(contador < 1){ gotoxy(2,2); printf("0 --> Leer una posicion de memoria" ); gotoxy(2,4); printf("1 --> Sobreescribir una posicion de me…
Programación lenguaje C #include <16F887.h> #device ADC=16 #FUSES NOWDT //No Watch Dog Timer #FUSES NOBROWNOUT //No brownout reset #FUSES NOLVP //No low voltage prgming, B3(PIC16) or B5(PIC18) used for I/O #use delay(internal=4000000) #include <lcd.c> void main() { setup_adc_ports(sAN0); setup_adc(A…
www.calzocnillos8.es whatsapp:008618028684142 skype:tifany.li168
Código CCS #include <main.h> void main() { int16 ciclodetrabajo = 510; setup_adc_ports(sAN0); setup_adc(ADC_CLOCK_DIV_2); setup_timer_2(T2_DIV_BY_16,255,1); //4.0 ms overflow, 4.0 ms interrupt setup_ccp1(CCP_PWM|CCP_SHUTDOWN_AC_L|CCP_SHUTDOWN_BD_L); set_pwm1_duty(ciclodetrabajo); int16 valordigital …
DEFINICIÓN En computación, la unidad aritmético lógica, también conocida como ALU (siglas en inglés de arithmetic logic unit), es un circuito digital que calcula operaciones aritméticas (como suma, resta, multiplicación, etc.) y operaciones lógicas (si, y, o, no), entre dos o mas números. Código par…
Copear el siguiente código y guardarlo con la extensión index.html en la carpeta www de WampServer <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <form name="Formulario" method="get" action="Suma.php"> Numero1: <input type="text" name="N1"> <br><br> Numero2: <inp…
Codigo del modulo VHDL library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.STD_LOGIC_ARITH.ALL; use IEEE.STD_LOGIC_UNSIGNED.ALL; entity q is Port ( CLK_50Mhz,a,c,r,p : in STD_LOGIC; an : out STD_LOGIC_VECTOR (3 downto 0); indicador : inout STD_LOGIC; Display : out STD_LOGIC_VECTOR (7 downt…

Diseña un circuito digital secuencial el cual de una Salida (Led 3) = 1 solamente cuando la entrada (LED 2) sea igual a: 110 presentando cada bit de izquierda a derecha por 1 pulso del reloj (LED 1). Emplee un circuito tipo Mealy.

En el siguiente link se encuentra la aplicación https://www.dropbox.com/s/l1ip0i1x0mmbr29/Aplicacion.rar?dl=0 Nota: - El audio poa00876 que se encuentra en el archivo .rar copiarlo al disco local C: - Agregar el componente Windows Media Player:

Código CCS #include <18F4550.h> #device ADC=16 #use delay(internal=4000000) #include <lcd.c> void main() { int32 valordigital = 0, ciclodetrabajo; float valoranalogico = 0; setup_adc_ports(AN0); setup_adc(ADC_CLOCK_INTERNAL|ADC_TAD_MUL_0); setup_timer_2(T2_DIV_BY_16,255,1); setup_ccp1(CCP_PWM|CCP_SH…
Código en PIC C #include <18F4450.h> #device ADC=16 #FUSES NOWDT #FUSES WDT128 #FUSES NOBROWNOUT #FUSES NOLVP #FUSES NOXINST #use delay(clock=1.97MHz) #include <lcd.c> #use fast_io(B) int32 ciclodetrabajo = 510; #INT_RB void INTERRUPCION_PUERTO_B(void) { if(input(pin_b5) == 1 && ciclodetrabajo < 102…

Código en PIC C #include <18F4550.h> #fuses XTPLL,NOMCLR,NOWDT,NOPROTECT,NOLVP,NODEBUG #use delay(clock=8MHz) #include <lcd.c> #define use_portb_KBD TRUE #include <KBD.c> #use fast_io(A) void main() { int x = 1; //VARIABLE DE POSICIONAMIENTO X LCD_GOTOXY(X,N) int i = 0; //POSICIONAMIENTO DE DIRECCIO…
Simulacion Código en PIC C //12330628 //ING. ELECTRÓNICA //VICTOR ALFONSO TANORI RUIZ //COMUNICACIÓN SERIAL //HERMOSILLO, SONORA, MEXICO, 26 DE NOVIEMBRE DEL 2015 #include <18f4550.h> #fuses XT,NOWDT,NOLVP,NOPROTECT #use delay(clock=4M) #use rs232(baud=9600, xmit=pin_c6, rcv=pin_c7, bits=8, parity=N…
Código CCS #include <16F887.h> #device ADC=16 #FUSES NOWDT #FUSES NOBROWNOUT #FUSES NOLVP #use delay(internal=4000000) #use fast_io(c) #use fast_io(a) #include <lcd.c> void main() { set_tris_c(0b00000000); set_tris_a(0b00000111); int16 ciclodetrabajo = 510; setup_adc_ports(sAN0); setup_adc(ADC_CLOCK…
Programacion en pic c compiler #include <16F887.h> #FUSES NOWDT #FUSES NOBROWNOUT #FUSES NOLVP #use delay(internal=4MHz) #use fast_io(c) #use fast_io(d) #use fast_io(a) VOID main () { INT i = 0, j = 0; set_tris_c (0b11110000); set_tris_d (0b11110000); set_tris_a (0b11111111); output_c (0b0000); outp…
Aplicación desarrollada en el IDE Visual Studio utilizando el lenguaje de programación Visual Basic. link: https://www.youtube.com/watch?v=6YXlSPPdMdY
link: https://www.youtube.com/watch?v=FhC9u4USHX4&feature=youtu.be
#include <stdio.h> void main() { float registro; int contador; float memoria; float suma = 0; float promedio; printf("Cuantas calificaciones deseas introducir: " ); scanf("%f", ®istro); for(contador = 1; contador <= registro; contador ++) { printf("Introduce la calificacion %d: ", contador); scan…
#include <stdio.h> void main() { int registro; int contador; int memoria; int suma = 0; printf("Cuantos numeros desea introducir: " ); scanf("%d", ®istro); for(contador = 1; contador <= registro; contador++) { printf("Introduce el numero %d: ", contador); scanf("%d", &memoria); suma = suma + memo…