Техника

обозначение микросхем. подскажите пожалуйста,что обозначают GND, Vee, Vcc на микросхемах?

Иван Белоусов
Иван Белоусов
1 019
Все банально просто:
GND - это CROUND (земля) - точка нулевого потенциала микросхемы.
Vee - это минус питания микросхемы относительно GND
Vсс - это плюс питания микросхемы относительно GND
ВХ
Владимир Хайрутдинов
93 129
Лучший ответ
Hanuhl Kang непонятно минус относительно минусу ?
GND- общий
Vee, Vcc- питания. (разные цепи)

ЗЫ:
Vcc - Voltage Collector Collector
Vdd - Voltage Drain Drain
Vee - Voltage Emitter Emitter
Vss - Voltage Source Source

Vcc -- For TTL circuitry, this is the +5 volts which sits on the collector of the bi-polar transistor output circuit.
Vee -- For TTL circuitry, this is the GND which sits on the emitter of a bi-polar transistor output circuit.
Vdd -- For CMOS circuitry (like the PIC) this is the +5 (or +3) voltage that sits on the 'drain' of a
MOS-FET transistor output circuit.
Vss -- For CMOS circuitry, this is the GND that sits on the 'source' of a MOS-FET transistor output circuit.
Иван Агапчев Voltage Collector Collector.
int humidityDrive = 2; //
int temperatureDrive = 3; //
//
// FILE: dht11_test1.pde
// PURPOSE: DHT11 library test sketch for Arduino
//
#include
dht11 DHT;
#define DHT11_PIN 4

void setup(){
Serial.begin(9600);
Serial.println("DHT TEST PROGRAM ");
Serial.print("LIBRARY VERSION: ");
Serial.println(DHT11LIB_VERSION);
Serial.println();
Serial.println("Type,\tstatus,\tHumidity (%),\tTemperature (C)");
pinMode(humidityDrive, OUTPUT); //
digitalWrite(humidityDrive, HIGH); //
pinMode(temperatureDrive, OUTPUT); //
digitalWrite(temperatureDrive, HIGH); //
}

void loop(){
int chk;
Serial.print("DHT11, \t");
chk = DHT.read(DHT11_PIN); // READ DATA
switch (chk){
case DHTLIB_OK:
Serial.print("OK,\t");
break;
case DHTLIB_ERROR_CHECKSUM:
Serial.print("Checksum error,\t");
break;
case DHTLIB_ERROR_TIMEOUT:
Serial.print("Time out error,\t");
break;
default:
Serial.print("Unknown error,\t");
break;

}

if(DHT.humidity > 80) digitalWrite(humidityDrive, LOW); //
if(DHT.humidity < 75) digitalWrite(humidityDrive, HIGH); //
if(DHT.temperature < 17) digitalWrite(temperatureDrive, LOW); //
if(DHT.temperature > 24) digitalWrite(temperatureDrive, HIGH); //

// DISPLAT DATA
Serial.print(DHT.humidity,1);
Serial.print(",\t");
Serial.println(DHT.temperature,1);

delay(1000);
}
Вера Котликова Это чего это? И для чего?
Земля (электроника) — узел цепи, потенциал которого условно принимается за ноль Gemeinsame Normdatei — немецкая система классификации и систематизации
GND — Википедия
Давай по другому в микросхеме 3ноги VDD, 1 нога VSS на земле сидит
Vcc - Voltage Collector Collector ---это + обычные транзисторы имеют такое обозначение
Vdd - Voltage Drain Drain ----это+ обычно полевики и мосфеты имеют выходы
Vee - Voltage Emitter Emitter -----это ( -) обычные транзисторы имеют такое обозначение
Vss - Voltage Source Source -----это ( -) обычно полевики и мосфеты имеют выходы
в чём различия? думаю различия в силовых и слаботочном питании, или имеется в виду двухполярное питание? тогда почему сидит на земле контакт VSS
s-gnd
pw-gnd
Спасибо