
One of India’s top manufactures of high-end electronics, watts is an ISO 9001:2008 certified company specialising in lighing solutions, fans and electronic components including resistors, capacitors and diodes. watts resistors are used in testing/measuring instruments, tele-communication systems and electronic equipment offered by Parshwa components.
0603 1% | 0603 5% | 0805 1% | 0805 5% | 1206 1% | 1206 5% | 1210 1% | 1210 5% | 2512 5% | 0603 5% resistor network | |
1k-0603-1% | 1k 0603 5% | 1k 0805 1% | 1k - 0805 5% | 1k - 1206 1% | 1k - 1206 5% | 1k - 1210 1% | 1k - 1210 5% | 1k - 2512 5% | 1k - 0603 5% resistor network | |
2k-0603-1% | 2k 0603 5% | 2k 0805 1% | 2k - 0805 5% | 2k - 1206 1% | 2k - 1206 5% | 2k - 1210 1% | 2k - 1210 5% | 2k - 2512 5% | 2k - 0603 5% resistor network | |
2k-20603-1% | 2k2 0603 5% | 2k2 0805 1% | 2k2 - 0805 5% | 2k2 - 1206 1% | 2k2 - 1206 5% | 2k2 - 1210 1% | 2k2 - 1210 5% | 2k2 - 2512 5% | 2k2 - 0603 5% resistor network | |
2k7 0603 1% | 2k7 0603 5% | 2k7 0805 1% | 2k7 - 0805 5% | 2k7 - 1206 1% | 2k7 - 1206 5% | 2k7 - 1210 1% | 2k7 - 1210 5% | 2k7 - 2512 5% | 2k7 - 0603 5% resistor network | |
3k 0603 1% | 3k 0603 5% | 3k 0805 1% | 3k - 0805 5% | 3k - 1206 1% | 3k - 1206 5% | 3k - 1210 1% | 3k - 1210 5% | 3k - 2512 5% | 3k - 0603 5% resistor network | |
3k3 0603 1% | 3k3 0603 5% | 3k3 0805 1% | 3k3 - 0805 5% | 3k3 - 1206 1% | 3k3 - 1206 5% | 3k3 - 1210 1% | 3k3 - 1210 5% | 3k3 - 2512 5% | 3k3 - 0603 5% resistor network | |
#define R1 10 // resistance of first resistor in ohms
#define R2 20 // resistance of second resistor in ohms
#define R3 30 // resistance of third resistor in ohms
void setup() {
// put your setup code here, to run once:
Serial.begin(9600); // start serial communication at 9600 baud
}
void loop() {
// put your main code here, to run repeatedly:
double resistance = (1.0 / (1.0 / R1 + 1.0 / R2 + 1.0 / R3)); // calculate total resistance
Serial.println(resistance); // print resistance to serial port
delay(1000); // wait 1 second before repeating
}