Chat
Welcome to Flux
Treat Flux like your intern. Tell it what you'd like to build and it'll get to work. You can also ask it questions, brainstorm ideas, and teach it your preferences. Learn More
INA333:OUT to ESP32-S3:ADC1_CHX (choose any available ADC channel)Reviews
Coffee Waker Main HQ W/ Module V2.2
Properties
Properties describe core aspects of the project.
Pricing & Availability
Distributor | Qty 1 |
|---|---|
Arrow | $4.27–$6.00 |
Digi-Key | $12.57–$17.58 |
LCSC | $13.63–$14.71 |
Mouser | $17.35 |
Verical | $2.11–$6.25 |
Controls
Welcome 👋
Flux helps you build PCBs faster with an AI teammate!
Create your account to collaborate, stay updated, fork your own version, and get instant answers from our AI agent.
ryanf
copilot
ryanf
copilot
- Low cost
- Adequate resolution and amplification for load cell applications
- Easy availability and widespread use in various similar projects.
Connecting the HX711-
Power Connections:
- Connect VCC to 2.6V-5.5V power supply (e.g., 3.3V or 5V)
- Connect GND to ground
-
Load Cell Connection:
- Connect the load cell positive output to A+ or B+
- Connect the load cell negative output to A- or B-
-
SPI Communication:
- Connect PD_SCK to a GPIO pin on your microcontroller for clock signal
- Connect DOUT to a GPIO pin on your microcontroller for data output
-
Other Important Connections:
- Connect RATE pin if you need to adjust the data rate (high or low, typically 10Hz or 80Hz).
Example Connection Using ESP32:ryanf
copilot
- Resolution: The ADC has a 12-bit resolution.
- Input Range: The ADC input voltage range is 0 to 3.3V (same as the supply voltage).
- Effective Number of Bits (ENOB): Usually around 10-11 bits due to noise and other factors.
- Sampling Rate: The ADC can sample at up to $2Msps$, but the effective rate for most accurate measurements is lower.
- ADC Channels: ESP32-S3 has up to 20 ADC channels.
Amplification Requirements:- INA125: An instrumentation amplifier specifically designed for bridge-type sensor applications like load cells. It also includes a voltage reference that can be used to excite the load cell.
- INA114: A general-purpose instrumentation amplifier with high precision and low noise.
- AD620: Another general-purpose instrumentation amplifier suitable for precise measurements.
Example Amplifier Connection with ESP32-S3:-
Power Connections:
- Amplifier VCC to 3.3V (PP3V3)
- Amplifier GND to GND
-
Load Cell Connection to Amplifier:
- Connect load cell positive output to the amplifier's non-inverting input
- Connect load cell negative output to the amplifier's inverting input
-
Amplifier Output to ESP32-S3 ADC:
- Connect amplifier output to one of the ESP32-S3 ADC pins (e.g., ADC1_CHANNEL_0 or ADC2_CHANNEL_0)
-
Gain Setting:
- Configure the amplifier gain using external resistors as specified in the amplifier's datasheet to achieve a gain of around 40-45.
Software Configuration on ESP32-S3: