void loop() int state = digitalRead(rxPin);
The HSB133 receiver is a workhorse of the analog wireless world. It bridges the gap between unreliable toy-grade receivers and complex, expensive professional telemetry modules.
Always buy a few extra modules. While robust, RF modules are susceptible to ESD (Electrostatic Discharge) during handling. Ground yourself before soldering, and your HSB133 will provide years of reliable service. Have a specific question about the HSB133? Consult the official datasheet or leave a comment on your favorite electronics forum.
Whether you are a hobbyist building a remote-controlled garage door, an engineer prototyping a data link, or a technician repairing an old RF system, understanding the nuances of the HSB133 receiver is essential. This article provides a deep dive into its technical specifications, typical applications, wiring diagrams, and common troubleshooting steps. The HSB133 is a high-sensitivity, ASK (Amplitude Shift Keying) superheterodyne receiver module . Unlike cheaper super-regenerative receivers, which suffer from frequency drift and poor selectivity, the HSB133 uses a superheterodyne architecture. This means it converts the incoming RF signal to a fixed intermediate frequency (IF) for processing, resulting in superior stability and noise rejection.
HSB133 VCC → Arduino 5V; GND → GND; DATA → Pin 2.
// Simple receiver sketch for HSB133 const int rxPin = 2; int lastState = LOW; unsigned long lastTrigger = 0; void setup() Serial.begin(9600); pinMode(rxPin, INPUT); Serial.println("HSB133 Receiver Ready");
| Feature | HSB133 (Classic) | SYN470R | CC1101 (SPI) | | :--- | :--- | :--- | :--- | | | Very low (digital out) | Low | High (needs SPI config) | | Current Draw | ~3.5 mA | ~5.5 mA | ~18 mA (RX) | | Selectivity | Good | Excellent | Excellent | | Price | $2 - $4 | $3 - $5 | $6 - $10 | | Best for | Simple on/off remote | Sensor networks | Frequency hopping/protocols |