

The S1133 Si Photodiode, manufactured by Hamamatsu Photonics, is a silicon-based light sensor designed to convert light into an electrical current. It is highly sensitive to a broad spectrum of wavelengths, ranging from ultraviolet to near-infrared, making it an ideal choice for applications requiring precise optical detection and measurement. Its compact size and high reliability make it suitable for use in industrial, scientific, and consumer electronics.








| Parameter | Value |
|---|---|
| Manufacturer Part ID | S1133 |
| Manufacturer | Hamamatsu Photonics |
| Spectral Response Range | 190 nm to 1100 nm |
| Peak Sensitivity Wavelength | 960 nm |
| Photosensitivity | 0.5 A/W (at 960 nm) |
| Active Area | 1.2 mm × 1.2 mm |
| Reverse Voltage (Max) | 10 V |
| Dark Current (at 10 V) | 2 nA (typical) |
| Capacitance (at 0 V) | 10 pF (typical) |
| Rise Time | 0.1 µs (typical) |
| Package Type | TO-18 metal can |
The S1133 Si Photodiode has two pins, as described below:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Anode | Positive terminal of the photodiode. Connect to the input of the circuit. |
| 2 | Cathode | Negative terminal of the photodiode. Typically connected to ground. |
Basic Circuit Connection:
Power Supply:
Signal Amplification:
Wavelength Considerations:
The following example demonstrates how to use the S1133 Si Photodiode with an Arduino UNO to measure light intensity.
// S1133 Si Photodiode Example with Arduino UNO
// This code reads the voltage across the photodiode and prints the light intensity
// to the Serial Monitor.
const int photodiodePin = A0; // Analog pin connected to the photodiode anode
int sensorValue = 0; // Variable to store the analog reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(photodiodePin); // Read the analog value from the photodiode
float voltage = sensorValue * (5.0 / 1023.0); // Convert the reading to voltage
// Print the voltage to the Serial Monitor
Serial.print("Photodiode Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(500); // Wait for 500 ms before the next reading
}
No Output Signal:
High Noise in Output:
Saturated Output:
Slow Response Time:
Q1: Can the S1133 detect infrared light?
Yes, the S1133 is sensitive to near-infrared light, with a peak sensitivity at 960 nm.
Q2: What is the maximum operating temperature for the S1133?
The S1133 can operate within a temperature range of -30°C to +85°C.
Q3: Can I use the S1133 without a reverse bias voltage?
Yes, the photodiode can operate in photovoltaic mode (no bias), but its response time and sensitivity will be reduced.
Q4: How do I protect the photodiode from damage?
Avoid exceeding the maximum reverse voltage (10 V) and prevent exposure to excessive light intensities.
This concludes the documentation for the S1133 Si Photodiode. For further details, refer to the datasheet provided by Hamamatsu Photonics.