Pesquisar neste blog

29/05/2019

Display 7 segmentos no Logisim



Números primos com Multiplexador no Logisim de 0 - 63
Display 7 segmentos no Logisim de 0 - 63
Números primos no Logisim de 0 - 63














































































































Clique aqui para fazer o download da tabela feito no excel
Clique aqui para fazer o download do arquivo feito no Logisim 2.7


Palavras chave:

Prime numbers with Log Multiplexer 0 - 63
Display 7 segments in Logisim from 0 - 63
Prime numbers in Logisim from 0 - 63

Números primos con Multiplexor en el Logis de 0 - 63
Pantalla 7 segmentos en Logisim de 0 - 63
Números primos en el Logis de 0 - 63

लग एकाइक्सरर 0 - 63 को साथ प्रिम नम्बर
0 - 63 बाट लगिसिममा 7 खण्डहरू प्रदर्शन गर्नुहोस्
0 - 63 बाट लगिसममा प्रिम नम्बरहरू

Zalety z multiplekserem dziennika 0 - 63
Wyświetl 7 segmentów w Logisim od 0 - 63
Pierwsze liczby w Logisim od 0 - 63

Прості числа з мультиплексором протоколів 0 - 63
Відображення 7 сегментів у Logisim від 0 - 63
Прості номери в Логісім від 0 - 63

09/05/2019

CONTADOR CRESCENTE E DECRESCENTE

Contador crescente e decrescente com Flip Flop tipo T



















Palavra chave:

Increasing and decreasing counter with Flip Flop type T
Contador creciente y decreciente con Flip Flop tipo T
使用觸發器類型T增加和減少計數器
Aukning og minnkandi gegn með Flip Flop tegund T
フリップフロップT型で増減カウンタ
Kordhinta iyo hoos u dhigidda miiska leh nooca Flip Flop type T
Contatore crescente e decrescente con Flip Flop tipo T
Licznik zwiększający i zmniejszający z Flip Flop typu T.
Zvýšení a snížení čítače s Flip Flop typu T
Flip Flop tip T ile tezgahın arttırılması ve azaltılması
زيادة وتناقص العداد مع Flip Flop type T
플립 플롭 T 형 증감 카운터
Flip Flop ტიპის T- სთან მზარდი და შემცირების პროცესი

29/03/2019

Nota aluno em JAVA

Faça um algoritmo em JAVA e implemente os seguintes características:
Matrícula
Nome
Nota1, Nota2, Nota3, Nota4,
mediaSemestral
notaPF
mediaFinal

O algoritmo deve ter uma classe
- o método construtor padrão
- método construtor sobrecarregado
- métodos gets e sets para os atributo
- método para calcularMediaSemestral
- método calcularMediaComPF
Desenvolver uma classe com método main que instancie um objeto da classe e realize operações com esse objeto e as notas do aluno devem ser valores entre 0 < notas < 10:

Resolução:

ClasseNotaAluno1

package notaaluno1;
import java.util.Scanner;

public class ClasseNotaAluno1 {
    Scanner leia = new Scanner(System.in);
    
    private String nome;
    private int matricula;
    private float n1, n2, n3, n4;
    private float mediaFinal, notaPF;
        
    public void Aluno(String nome, int matricula){
        System.out.println("Metodo Aluno: String nome; int matricula");
        this.nome = nome;
        this.matricula = matricula;
    }
    public float mediaSemestral(){
        mediaFinal = (n1 + n2 + n3 + n4) /4;
        System.out.print("\nMÉDIA SEMESTRAL = "+mediaFinal);
        if(mediaFinal >= 6){
            System.out.println(" Aprovado(a)");
        }else if(mediaFinal > 1 && mediaFinal < 6){
            System.out.println("  Aluno(a) de recuperação !");
            calcMediaComPF();
        }else{
            System.out.println("  Reprovado(a)");
        }
        
        return mediaFinal;
    }
    public float calcMediaComPF(){
        System.out.print("\nDigite a nota da PF: ");
        notaPF = leia.nextFloat();
        if(notaPF < 0 || notaPF > 10){
            while(notaPF < 0 || notaPF > 10){
                System.out.println("Erro ! DIGITE UMA NOTA VÁLIDA ENTRE 0 E 10");
                notaPF = leia.nextFloat();
            }
        }
        
        float notaFinal = (notaPF + mediaFinal)/2;
        if(notaFinal >= 5){
            System.out.println("Média finaL = "+notaFinal+" Aprovado(a)");
        }else{
            System.out.println("Aluno(a) "+nome+" nota final = "+notaFinal+" reprovado(a)");
        }
        return notaFinal;
    }
    public void status(){
        System.out.println("\n______Status do aluno(a)_______");
        System.out.print("Aluno(a): "+nome);
        System.out.print("\nNota1 = "+n1+"\nNota2 = "+n2+
                "\nNota3 = "+n3+"\nNota4 = "+n4);
    }
    
    public void setNome(String nome){
        this.nome = nome;
    }
    public void setN1(float n1){
        this.n1 = n1;
    }
    public void setN2(float n2){
        this.n2 = n2;
    }
    public void setN3(float n3){
        this.n3 = n3;
    }
    public void setN4(float n4){
        this.n4 = n4;
    }
    public void setMediaFinal(float mediaFinal){
        this.mediaFinal = mediaFinal;
    }
    public void setNotaPF(float notaPF){
        this.notaPF = notaPF;
    }
        
    public String getNome(){
        return nome;
    }
    public float getN1(){
        return n1;
    }
    public float getN2(){
        return n2;
    }
    public float getN3(){
        return n3;
    }
    public float getN4(){
        return n4;
    }
    public float getMediaFinal(){
        return mediaFinal;
    }
    public float getNotaPF(){
        return notaPF;
    }
    
}

Método Main

package notaaluno1;
import java.util.Scanner;

public class NotaAluno1 {

    static float nota(float notax) {
        Scanner leia = new Scanner(System.in);

        while (notax < 0 || notax > 10) {
            System.out.print("EROO ! Digite uma nota entre 0 e 10: ");
            notax = (leia.nextFloat());
        }
        return notax;
    }

    public static void main(String[] args) {
        Scanner leia = new Scanner(System.in);
        
        ClasseNotaAluno1 aluno = new ClasseNotaAluno1();

        System.out.print("Digite o nome do aluno: ");
        aluno.setNome(leia.next());
        
        System.out.print("Digite a [1°] nota do aluno(a): " + aluno.getNome() + " = ");
        float nota1 = nota(leia.nextFloat());
        aluno.setN1(nota1);
        /*ou
        aluno.setN1(nota(leia.nextFloat()));*/
        
        System.out.print("Digite a [2°] nota do aluno(a): " + aluno.getNome() + " = ");
        float nota2 = nota(leia.nextFloat());
        aluno.setN2(nota2);
        
        System.out.print("Digite a [3°] nota do aluno(a): " + aluno.getNome() + " = ");
        float nota3 = nota(leia.nextFloat());
        aluno.setN3(nota3);

        System.out.print("Digite a [4°] nota do aluno(a): " + aluno.getNome() + " = ");
        float nota4 = nota(leia.nextFloat());
        aluno.setN4(nota4);


        aluno.status();
        aluno.mediaSemestral();
        
        
        System.out.println("\n");
    }
}

22/03/2019

EDO circuito capacitor

Na figura abaixo está representado um circuito utilizado para carregar um capacitor.

Mostra -se em física que a carga q = q(t) no capacitor é regida pela equação:






Onde R é a resistência, C a capacitância e E a força eletromotriz. Supondo R, C e E constantes e q(0) = 0, determine a carga no instante t no capacitor.

Resolução:

A equação dada é equivalente a






a solução gera é















pois a = 1/RC , para ter q(0) = 0, devemos tomar K = -EC




Para finalizar a seção, observamos que se em (1) substituirmos x por y e t por todo x, obtemos a equação:  dy/dx + ay = f(x) cuja solução geral é 

26/01/2019

Matriz com números aleatórios em Java


/*Faça um algoritmo de uma matriz 4x4 com valores aleatórios entre 0 e 100. Apos isso determine o maior número da matriz e a sua posição.*/

import java.util.Random;

public class Main{
public static void main(String[] args){
    int[][] numAleatorio = new int [4][4];
    Random numeroRandom = new Random();
 
    for (int i = 0; i < numAleatorio.length; i++){
        for (int j = 0; j < numAleatorio[i].length; j++){
            numAleatorio[i][j] = numeroRandom.nextInt(100);//gera numero aleatorio de 0 a 100
        }
    }
 
    //int maior = Integer.MIN_VALUE;
int maior = 0, linha = 0, col = 0;

for (int i = 0; i < numAleatorio.length; i++){
    for (int j = 0; j < numAleatorio[i].length; j++){
        if(numAleatorio[i][j] > maior){
            maior = numAleatorio[i][j];
            linha = i;
            col = j;
        }
    }
}

System.out.print("\t\tMatriz\n");
for (int i = 0; i < numAleatorio.length; i++){
    for (int j = 0; j < numAleatorio[i].length; j++){
        System.out.print("\t"+numAleatorio[i][j]+" ");
    }
    System.out.println();
}
System.out.println("\nMaior valor = "+maior);
System.out.println("Linha: "+linha);
System.out.println("Coluna:"+col);
}
}

20/01/2019

Desenhando um smille em java

Classe DesenhoComponente

import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JPanel;

public class DesenhoComponente extends JPanel{
   public void paintComponent( Graphics g ){
   
      super.paintComponent(g);
   
      // desenhar o rosto
      g.setColor( Color.YELLOW );
      g.fillOval( 10, 10, 200, 200 );
   
      // desenhar os olhos
      g.setColor( Color.BLACK );
      g.fillOval( 55, 65, 30, 30 );
      g.fillOval( 135, 65, 30, 30 );
   
      // desenhar a boca
      g.fillOval( 50, 110, 120, 60 );
   
      // "retocar" a boca em um sorriso
      g.setColor( Color.YELLOW );
      g.fillRect( 50, 110, 120, 30 );
      g.fillOval( 50, 120, 120, 40 );
   }
}

__________ / / ________
Código fonte principal

import javax.swing.JFrame;

public class DrawSmiley
{
   public static void main( String[] args )
   {
      DesenhoComponente painel = new DesenhoComponente();   
      JFrame aplicacao = new JFrame();
      aplicacao.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
   
      aplicacao.add( painel );
      aplicacao.setSize( 230, 250 );   
      aplicacao.setVisible( true );
   }
}

Impressão do smille



















Palavras chave:

Drawing a smille in java
Dibujo de un smille en java
Teken 'n glimlag in java
رسم smille في جافا
জাভা একটি স্মাইল অঙ্কন
Pagguhit ng isang smille sa java
Teikna broskalla í Java
Smink rajzolása a java-ban
Ngirim smile ing jawa
Parando Smille in Java
Parando Smille in Java

13/01/2019

Sequencial de 10 LEDs

Sequência de 10 LEDs com ci 555 + 7490 + 7442, ideal para luminárias de natal
Componentes utilizados:

1 ci 555
1 ci 7490
1 ci 74HC42
1 Potenciômetro 150KΩ
11 Resistores 150Ω a 390Ω
11 Leds
1 Capacitor 10uF
1 Resistor 10KΩ
1 Resistor de 1KΩ
Sequênciador de leds com ci 555, 7490 e 74HC42





















Clique aqui para fazer o download do arquivo feito no Proteus 8

Créditos para: http://www.ezuim.com/pdf/seq_10leds.pdf

Palavras chave:

Последовательность из 10 светодиодов ci 555 + 7490 + 7442
Seicheamh 10 stiúir le 555 + 7490 + 7442
Sequence 10 LED með ci 555 + 7490 + 7442
Volgorde van 10 LED's met ci 555 + 7490 + 7442
Пасля 10 святлодыёдаў з Х 555 + 7490 + 7442
ci 555 + 7490 + 7442の10個のLEDのシーケンス
ci 555 + 7490 + 7442가있는 10 개의 LED 시퀀스
Secuencia de 10 LEDs con ci 555 + 7490 + 7442
Ci 555 + 7490 + 7442 ile 10 LED dizisi
Sekwencja 10 diod LED z ci 555 + 7490 + 7442

12/01/2019

Semáforo com CI 4017 + 555

Componentes utilizados:
1 ci 555
1 ci 4017
2 leds vermelhos
2 leds amarelos
2 leds verdes
1 led qualquer
15 diodos 1N4148
1 capacitor 10 uF
1 resistor de 47KΩ
1 resistor de 1KΩ
1 resistor de 220Ω
Semáforo com ci 4017 e 555





















Clique aqui para fazer o download do arquivo feito no Proteus 8

Créditos para: http://circuitdesolator.blogspot.com/2011/01/traffic-light-circuit-based-on-4017.html

Palavras chave:

Semaphore with CI 4017 + 555
Semaphore oo leh CI 4017 + 555
Semaphore met CI 4017 +555
Semaphor mit CI 4017 + 555
Semaphore հետ CI 4017 + 555
Святло з CI 4017 + 555
Semaphore ndi CI 4017 + 555
CI 4017 + 555 සමඟ Semaphore සමඟ
Semaphore ak CI 4017 + 555
Semaphore s CI 4017 + 555
Semafor CI 4017 + 555-ga
Sémaphore avec CI 4017 + 555
סעמאַפאָרע מיט סי 4017 +555
Seapaphar le CI 4017 + 555
Семафор с CI 4017 + 555

11/01/2019

CI 74LS95

Registrador de deslocamento com CI 74LS95
Simulador Proteus 8.6














Clique aqui para fazer o download do arquivo feito no Proteus 8.6

Palavras chave:

Ofsetový registr s CI 74LS95
CI 74LS95 ഉപയോഗിച്ച് ഓഫർ രജിസ്റ്റർ ചെയ്യുക
使用CI 74LS95進行偏移寄存器
تسجيل الأوفست مع CI 74LS95
Offsetregister mit CI 74LS95
Yambani kulembetsa ndi CI 74LS95
Offset register med CI 74LS95
Offset register CI 74LS95-ga
Afrekeningsregister met CI 74LS95
Registrasi offset dengan CI 74LS95
CI 74LS95 бүхий офсет бүртгэл
Diiwaangelinta furfurista ee CI 74LS95

09/01/2019

Contador de 0 a 59

Contador com CI 74LS90 , 555 e 74LS47
Simulador Proteus 8.6


















Clique aqui para fazer o download do arquivo feito no Proteus 8.6

Palavras chave:

Räknare från 0 till 59
Ka soo horjeedka 0 ilaa 59
0에서 59 사이의 카운터
Лічыльнік ад 0 да 59
計數器從0到59
Μετρητής από 0 έως 59
Penghitung dari 0 hingga 59
Contatore da 0 a 59
0 മുതൽ 59 വരെ
0 ile 59 arasındaki sayaç
Počítadlo od 0 do 59

04/01/2019

Contador crescente / decrescente

Contador crescente e decrescente mestre escravo no Logisim usando túnel

Simulador Logisim


















Clique aqui para fazer o download do arquivo feito no Logsisim

Palavras chave:
Count increasing and decreasing master slave in Logisim using tunnel
Contador creciente y decreciente maestro esclavo en el Logisim usando túnel
Tel die toenemende en afnemende meesterslaaf in Logisim deur tonnel te gebruik
ዋሻ (ዋሻ) በመጠቀም ሎይስስሚን ሎይስምን በመጨመር እና በመቀነስ ላይ
العد زيادة وانخفاض الرقيق الرئيسي في Logisim باستخدام النفق
да лічыльніка і памяншэння гаспадара рабоў пры выкарыстанні Logisim тунэля
Избройте увеличаването и намаляването на главния slave в Logisim, използвайки тунел
Pagdugang sa pagdugang ug pagkunhod sa master slave sa Logisim gamit ang tunnel
使用隧道計算Logisim中增加和減少主從屬的數量
터널을 사용하여 Logisim에서 마스터 슬레이브 수를 늘리고 줄입니다.
Konte ogmante ak diminye mèt esklav nan Logisim lè l sèvi avèk tinèl
Tæl stigende og faldende master slave i Logisim ved hjælp af tunnel
Compter les esclaves maîtres croissants et décroissants dans Logisim à l'aide d'un tunnel
Steigerje en ferheegjen master slave yn Logisim mei tunnel
Hitung peningkatan dan penurunan master slave di Logisim menggunakan terowongan
Conta aumentando e diminuendo lo slave master in Logisim usando tunnel
Telling økende og avtagende mester slave i Logisim ved hjelp av tunnel
Tirada addoonta oo kordhaya oo yareynaya Logisim iyadoo la adeegsanayo tunnel
Räkna ökande och minskar mästarslav i Logisim med tunnel

30/12/2018

DIVISOR DE CORRENTE

Exercícios resolvidos com divisor de corrente

Ex1)








Resolução

iR1= iR2 = 45/10 = 4,5 A
iR3 = 45/15 = 3A
iR4 = 45/12 = 3,75A
iR5 = 45/5 = 9A
iR6 = 45/7 = 6,43A

Simulador EveryCircuit













Ex2)









Resolução:









Req = 2,9751 = 2,98Ω

iR1 = iR2 = 45/10 = 4,5A

i = V / Req = 45 / 2,98 = 15,1 A
i1 = i - iR1 = 15,1 - 4,5 = 10,6 A
i2 = i1 - iR2 = 10,6 - 4,5 = 6,13 A

LKT

10 . 4,5 - 6,13 . 5 - VR4 = 0
VR4 = 14,4V
iR4 = 14,4 / 12 = 1,2A
iR5 = 14,4 / 5 = 2,87A
iR6 = 14,4 / 7 = 2,05A
Simulador EveryCircuit












Ex3)



Req = 2,9751Ω
i = V / Req    V= i . Req

V = 35 . 2,9751 = 104,12 V

iR1 = iR2 = 104,12 / 10 = 10,4 A
iR3 = 35 - 10,4 - 10,4 = 14,2A

VR4 =  -14,2 . 5 + 10 . 10,4 = 33,3 V

iR4 = 33,3 / 12 = 2,77 A
iR5 = 33,3 / 5 = 6,65 A
iR6 = 33,3 / 7 = 4,75 A
Simulador EveryCircuit












Ex4)












Resolução:
Req = 12,35Ω
V = 12,35 . 80 = 988V

iR1 = 998 / 50 = 19,8 A
iR3 = i - iR1 = 80 - 19,8 = 60,2 A

LKT    19,76 . 50 - 60,24 . 7 - V = 0
V = 566 V

iR2 = 566 / 22 = 25,7 A
iR4 = 566 / 30 = 18,86 = 18,9 A

V = 81,2 V

iR6 = 81,2 / 19 = 4,27A
iR7 = 81,2 / 10 = 8,12A
iR8 = 81,2 / 25 = 3,25A
Simulador EveryCircuit










Ex5)












Resolução:
Req = 13,4Ω
i = 50 / 13,4 = 3,73 A

iR1 = 50/ 55= 909 mA
iR3 = 3,73 - 0,909 = 2,82 A
VR3 = 2,82 . 12 = 33,84V

LKT
VR2 = - 33,84 + 0,909 . 55 = 16,1V

iR2 = 16,1 / 10 = 1,61A
iR5 = 3,73 - 0,909 -2,82 -0,733 -1,61 = 0,475 = 475A

LKT
10 . 1,61 - 31 . 0,475 - VR6 = 0
VR6 = 1,4 V

iR7 = 1,4 / 10 = 140 mA
iR8 = 1,4 / 5 = 280 mA
Simulador EveryCircuit










Ex6)









Resolução:

iR1 = iR2 = iR... 200 / 550 = 0,364 A = 364 mA
Simulador EveryCircuit

Ex7)













Resolução:

iR1 = 40 / 12 = 3,3333... A
iR2 = 0 A
iR3 = 40 / 25 = 1,6 A













Ex8)













Resolução:

Divisor de corrente
Corrente procurada
i = (Corrente da fonte x corrente no resistor que eu não quero) / (resistor que não quero + resistor que eu quero)

iR2 =  ( -50 . 25) / (25 + 12) = - 33,78 = - 33,8 A
iR1 = (- 50 . 12) / (12 + 25) = - 16,22 A
Simulador EveryCircuit













Ex9)











Resolução:

Divisor de corrente para fonte de 12V
iR2 = 12 / 15 = 0,8A
iR4 = 12 / 19 = 0,631A

Para fonte de 50A com resistor de 25Ω e 12Ω o método por divisor de corrente já não se aplica, o mais adequado seria usar o método da análise de malhas ou um outro qualquer.

Simulador EveryCircuit








Ex10)









Resolução:
Req = 4,12Ω

i = V / Req        V = i . Req = 50 . 4,12 = 206V

iR1 = 206 / 30 = 6,87A
iR2 = 206 / 15 = 13,7A
iR3 = 206 / 25 = 8,24A
iR4 = 206 / 19 = 10,8A
iR5 = 206 / 20 = 10,3A
Simulador EveryCircuit













Ex11)

Resolução:
Req = 16 + (6 . 12 / (6+12)) = 20Ω














Divisor de corrente

Corrente procurada
Corrente i = (fonte corrente x res que eu não quero) / (res que eu não quero + res que eu quero)

iR1 = 30. 20 / (20+5) = 24A
iR2 = 30 . 5 / (5+20) = 6A
iR3 = 6 . 12 / (6+12) = 2A
iR = 6 . 6 / (12+6) = 4A

Obs: No resistor de 6Ω e 12Ω só possível aplicar o divisor de corrente se for um fonte isolada com apenas uma fonte corrente ou tensão, caso contrário é preciso usar outro método.
Simulador Proteus 8.6







Palavras chave:

Vermogensverdeler
Kragverdeler
Leistungsteiler
مقسم الطاقة
Power divider
бягучы Дзельнік
Разделител на мощността
Wopatula mphamvu
功率分配器
Razdjelnik snage
מחלק כוח
Vermogensverdeler
Power divider
Güç bölücü

21/12/2018

Switch case com letra maiúscula ou minuscula

/*Faca um algoritmo que pergunte em que turno você estuda e imprima
o horário que ele estuda. O algoritmo deve deve atender o requisito
dos caracteres tanto para maiúsculo quanto para minusculo, ambos devem
atender o solicitado.*/


import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
    Scanner leia = new Scanner(System.in);
System.out.print("Digite o turno que você estuda: ");
String turno = leia.nextLine();//lE UMA LINHA INTEIRA

switch(turno){
    case "m":
    case "M": System.out.println("Matutino");break;
    case "v":
    case "V": System.out.println("Vespertino");break;
    case "n":
    case "N": System.out.println("Noturno");break;
     
    default: System.out.println("Valor inválido:");
}
}
}

16/12/2018

Economia

 Marque V (verdadeira) ou F (falsa).

a) ( F ) A empresa, desejando maximizar seus lucros, escolherá o nível de produção para o qual a diferença entre a Receita Marginal e o Custo Marginal seja a maior possível.

b) ( F ) Ao se dobrar os fatores de produção e a quantidade obtida do produto dobrar, temos rendimentos crescentes de escala.

c) ( V ) O formato das curvas de custos médio e marginal, no curto prazo, está relacionado à lei dos custos crescentes e também à lei dos rendimentos decrescentes da produção.

 d) ( V ) A lei dos rendimentos decrescentes da produção ocorre somente no curto prazo, uma vez que existe um fator de produção que é fixo, no geral, é o capital.

e) ( V ) Em mercados de concorrência perfeita existem muitas firmas atuando e estas são formadoras de preços, ou seja, uma firma sozinha não afeta o preço de equilíbrio e nem a oferta isoladamente.

f) ( V ) Os custos de oportunidade são custos implícitos, porque eles são internos ao processo de produção.

g) ( V ) Uma das principais funções do CADE é observar/fiscalizar o mercado para evitar a formação de monopólios e permitir a concorrência leal entre as firmas.

h) ( V ) O surgimento de um monopólio pode estar relacionado, por exemplo, ao tamanho reduzido de um mercado e mesmo aos mecanismos de proteção à inovação.

11/12/2018

Semáforo utilizando Demultiplexador

Semáforo utilizando Demux feito no Logisim 2.7


















Clique aqui para fazer o download do arquivo feito no logisim


Palavras chave:

Semaphore using Demultiplexer
Semáforo utilizando Demultiplexador
Semaphore duke përdorur Demultiplexer
Semaphore gebruik Demultiplexer
Semaphor mit Demultiplexer
إشارة باستخدام Demultiplexer
Semaphore gamit ang Demultiplexer
디멀티플렉서를 사용하는 세마포어
Semaphore käyttäen Demultiplexeria
Sémaphore utilisant Demultiplexer
סמפור באמצעות Demultiplexer
Semaphore using Demultiplexer
Semaforo con demultiplexer
Lux usura Demultiplexer
Семафор с использованием демультиплексора
Seapapráid ag baint úsáide as Déantúiscéoltóir
Semaphore með Demultiplexer
Semaphore kwa kutumia Demultiplexer
Semaphore ใช้ Demultiplexer
Semaphore pomocí Demultiplexeru
Demultiplexer kullanarak Semaphore
Semafoor met Demultiplexer

08/12/2018

Multiplexador com contadores e registradores no Logsim


Multiplexador e registradores feito no Logisim 2.7




























Clique aqui para fazer o download do arquivo feito no Logisim

Palavras chave:

Multiplexer with counters and loggers in Logsim
Multiplexor con contadores y registradores en Logsim
Multiplexer met tellers en loggers in Logsim
Multiplexer mit Zählern und Loggern in Logsim
معدد مع العدادات وقطع الاشجار في Logsim
ಲಾಗ್ಸಿಮ್ನಲ್ಲಿ ಕೌಂಟರ್ ಮತ್ತು ಲಾಗರ್ಸ್ನೊಂದಿಗೆ ಮಲ್ಟಿಪ್ಲೆಕರ್
Logsim中帶有計數器和記錄器的多路復用器
Multiplexer bi counters û loggers li Logsim
Multiplexeur avec compteurs et enregistreurs dans Logsim
מרבב עם דלפקים ולוגרים ב Logsim
ലോഗ്സെമിംഗിൽ കൗണ്ടറുകളും ലോജറുകളും ഉപയോഗിച്ച് മൾട്ടിപ്ലക്സർ
Logsim मा काउन्टरहरू र लगगहरूसँग बहुविधकर्मी
Multiplekser z licznikami i rejestratorami w Logsim
Мультиплексор со счетчиками и регистраторами в Logsim
Multiplexer s čítačkami a záznamníky v systému Logsim

02/12/2018

Multiplexador e Demultiplexador


Multiplexador e Demultiplexador no Logisim
Circuito elaborado no Logisim 2.7



















Clique aqui para fazer o download do arquivo feito no Logisim 2.7


Palavras chave:

Multiplexer and Demultiplexer in Logisim
Multiplexer och Demultiplexer i Logisim
Multiplexer en Demultiplexer in Logisim
Multiplexer und Demultiplexer in Logisim
معدد و Demultiplexer في Logisim
Multiplexor i demultiplexor a Logisim
Logisim中的複用器和解復用器
Logisim의 멀티플렉서 및 디멀티플렉서
Multiplekser i Demultiplekser u Logisimu
Multiplexor y Demultiplexador en Logisim
Multiplexer at Demultiplexer sa Logisim
Multiplexer and Demultiplexer ann an Logisim
Πολυπλέκτης και Demultiplexer στο Logisim
Hoʻonui Multiplexer a me Demultiplexer ma Logisim
Na-agbanwe ọtụtụ na Demultiplexer na Logisim
Мультиплексор и демультиплексор в Logisim
Multiplexer iyo Demultiplexer ee Logisim
Multiplexer และ Demultiplexer ใน Logisim
Мультиплексор і Демультиплексор в Logisim
Multiplexer và Demultiplexer trong Logisim