Click here to Skip to main content
15,881,027 members
Home / Discussions / Hardware & Devices
   

Hardware & Devices

 
AnswerRe: Power Supply Variance Pin
Dave Kreskowiak6-Sep-19 14:16
mveDave Kreskowiak6-Sep-19 14:16 
GeneralRe: Power Supply Variance Pin
Richard Andrew x647-Sep-19 4:35
professionalRichard Andrew x647-Sep-19 4:35 
AnswerRe: Power Supply Variance Pin
phil.o6-Sep-19 16:38
professionalphil.o6-Sep-19 16:38 
GeneralRe: Power Supply Variance Pin
Richard Andrew x647-Sep-19 4:34
professionalRichard Andrew x647-Sep-19 4:34 
QuestionHelp check network port program Pin
Chenoa10-Aug-19 3:42
Chenoa10-Aug-19 3:42 
QuestionConnect to atmega32s using a serial cable to communicate over a 1000-foot range Pin
eddy20199-Jul-19 16:28
eddy20199-Jul-19 16:28 
QuestionHow to solve the ADS1230 temperature? Is it related to offset calibration? Pin
malugu7-Jul-19 17:55
malugu7-Jul-19 17:55 
AnswerRe: How to solve the ADS1230 temperature? Is it related to offset calibration? Pin
eddy20197-Jul-19 22:41
eddy20197-Jul-19 22:41 
I used the ADS1230 to do the bridge pressure signal acquisition, and I also encountered similar problems. Smile | :) Smile | :)

You can add corrections that must be corrected for each use, each time you correct the zero point, manual correction and zero offset correction. A DC offset can be added to the signal input of the circuit, but debugging is a bit cumbersome; it is also possible to add an offset value to the result of the AD conversion, which can be done by software.

How to correct, this is my processing conversion function
Void Convert_Data(void)
{
   Static uchar conter=0;
   Long Result=0, Temp_Result=0;
   Result=ReadAD();
// if(Result>524287)Temp_Result=1048576-Result;
  
// else Temp_Result=Result;
  
   Temp_Result=Result;

   Power[0]=Temp_Result/100000+0x30;
   Power[1]=Temp_Result%100000/10000+0x30;
   Power[2]=Temp_Result%10000/1000+0x30;
   Power[3]=Temp_Result%1000/100+0x30;
   Power[4]=Temp_Result%100/10+0x30;
   Power[5]=Temp_Result%10+0x30;
   //Temp_Result=0;
}
QuestionDelete Partition Question Pin
Kevin Marois4-Jul-19 6:53
professionalKevin Marois4-Jul-19 6:53 
AnswerRe: Delete Partition Question Pin
Richard MacCutchan4-Jul-19 21:58
mveRichard MacCutchan4-Jul-19 21:58 
AnswerRe: Delete Partition Question Pin
Dave Kreskowiak5-Jul-19 5:08
mveDave Kreskowiak5-Jul-19 5:08 
QuestionHOWTO: USB 5.25" Floppy Pin
James Curran29-May-19 11:18
James Curran29-May-19 11:18 
AnswerRe: HOWTO: USB 5.25" Floppy Pin
Richard Andrew x6410-Aug-19 3:25
professionalRichard Andrew x6410-Aug-19 3:25 
GeneralRe: HOWTO: USB 5.25" Floppy Pin
Andreas Saurwein26-Sep-19 5:05
Andreas Saurwein26-Sep-19 5:05 
GeneralRe: HOWTO: USB 5.25" Floppy Pin
Priestofpsi8-Nov-19 1:08
Priestofpsi8-Nov-19 1:08 
QuestionRestarting a Windows PC after driver installation Pin
Daniel Pfeffer29-Apr-19 2:12
professionalDaniel Pfeffer29-Apr-19 2:12 
AnswerRe: Restarting a Windows PC after driver installation Pin
Randor 12-May-19 8:13
professional Randor 12-May-19 8:13 
GeneralRe: Restarting a Windows PC after driver installation Pin
Daniel Pfeffer12-May-19 23:28
professionalDaniel Pfeffer12-May-19 23:28 
AnswerRe: Restarting a Windows PC after driver installation Pin
Gabimruk21-May-19 22:11
Gabimruk21-May-19 22:11 
QuestionVirtual printer in C# Pin
SterlingRun31-Mar-19 8:42
SterlingRun31-Mar-19 8:42 
AnswerRe: Virtual printer in C# Pin
Richard MacCutchan31-Mar-19 21:50
mveRichard MacCutchan31-Mar-19 21:50 
GeneralRe: Virtual printer in C# Pin
SterlingRun1-Apr-19 4:02
SterlingRun1-Apr-19 4:02 
AnswerRe: Virtual printer in C# Pin
Gerry Schmitz1-Apr-19 5:54
mveGerry Schmitz1-Apr-19 5:54 
GeneralRe: Virtual printer in C# Pin
SterlingRun1-Apr-19 7:40
SterlingRun1-Apr-19 7:40 
GeneralRe: Virtual printer in C# Pin
Gerry Schmitz1-Apr-19 9:56
mveGerry Schmitz1-Apr-19 9:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.