Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

load cell amplification using 741 to interface with pic

Status
Not open for further replies.

raman00084

Full Member level 6
Joined
Nov 29, 2010
Messages
362
Helped
2
Reputation
4
Reaction score
2
Trophy points
1,298
Activity points
4,006
my load cell has 4 wires 2 for power supply and 2 for output. i want to amplify the out put signal and interface to pic micro adc. how to do this in ic 741, dual supply is needed are single is enough. kindly post the circuit in op amp 741.



regards
kalyan
 

Hi,

741 is the single useful information here.
But a old, poor performance 741 Opamp will be not the right choice for load cells.

Please give more in formations about your load cell and the signals.

Btw: ther are thousands of load cell circuits around. You surely made your research. What's wrong with them?

Klaus
 

I think you need to use an Instrumentation amplifier for better operation(in case you don't know you can find some info here https://en.wikipedia.org/wiki/Instrumentation_amplifier ),so in case you need a single supply or/and cheaper INA you can either build a one using 3 op amps or look for a one like AD8223 ,AD623, MAX4194 .... etc
 

Use HX711, its low cost and works great, you get direct digital data without messing with analog amplifiers.

https://www.sunrom.com/195



Code:
sbit AD_DATA_PIN = P1^5; // Pin mapping of microcontroller
sbit AD_SCK_PIN = P0^0; // Pin mapping of microcontroller

unsigned long ReadCount(void)
{
	unsigned long Count;
	unsigned char i;
	AD_SCK_PIN=0; 
	Count=0;
	while(AD_DATA_PIN); 
	for (i=0;i<24;i++)
	{
		AD_SCK_PIN=1;
		Count=Count<<1;
		AD_SCK_PIN=0;
		if(AD_DATA_PIN) Count++;
	}
	AD_SCK_PIN=1;
	Count=Count^0x800000;
	AD_SCK_PIN=0;
	return(Count);
}
 
Last edited by a moderator:
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top