MaxHeadRoom
- Joined Jul 18, 2013
- 30,713
From what I gather it was pretty much arbitrary, one of the theories around when I had one of these auto's was it was to reduce galvanic corrosion at chassis termination points.
Max.
Max.
A lot of tractors and work machines were positive ground.This is getting interesting... do you know of any specific case in the "other systems" category that has done this? Also, is there a specific reason why this could be an advantage over the standard negative ground?
Quite common in portable radios back when NPN transistors were comaratively rare.Why? Lots of cars (and other systems) have used a positive ground convention.
Oh, well- I didn't keep the circuit on the breadboard as my fun of verifying was successful.I did connect Vdd to power , Vss to neutral/GND(whatever one be called it- as long the right meaning is conveyed- I hope so))the decoder , four decoders outputs to four LEDS with required resistances controlled by four PNP transistors and a sketch.The simple sketch is given below:How did you connect them?
const int INput1 = 11;
const int INput2 = 12;
void setup() {
// put your setup code here, to run once:
pinMode(INput1,OUTPUT);
pinMode(INput2,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(INput1,HIGH);digitalWrite(INput2,HIGH);
delay(1000);
digitalWrite(INput1,HIGH);digitalWrite(INput2,LOW);
delay(1000);
digitalWrite(INput1,LOW);digitalWrite(INput2,HIGH);
delay(1000);
digitalWrite(INput1,LOW);digitalWrite(INput2,LOW);
delay(1000);
}
I used 4 NAND gates from an IC to get 2 to 4 decoder and used two inputs to get four outputs.What does this code have to do with connecting four NAND gates together?
Excellent and congratulations. Back when I was experimenting like this I had to use slide switches to make the inputs. Oh how things have changed.I used 4 NAND gates from an IC to get 2 to 4 decoder and used two inputs to get four outputs.
sureshparanjape
I suggest you go back and read the very first post of this thread. Sureshparanjape (you know, the thread starter?) started the thread by stating he was using an Arduino as the digital signal source.What does this code have to do with connecting four NAND gates together?
| Thread starter | Similar threads | Forum | Replies | Date |
|---|---|---|---|---|
|
|
DMM count confusion | Test & Measurement | 6 | |
| F | PCB layout for oscillator - separated GND plane confusion | PCB Layout , EDA & Simulations | 49 | |
| I | BLDC Driver circuit confusion | General Electronics Chat | 5 | |
| C | Fuse Layout confusion | Power Electronics | 4 | |
| M | Differential pair - current flow confusion | Analog & Mixed-Signal Design | 8 |