코코아팹은 누구나 창의적 아이디어를 현실로 만들어 낼 수 있도록
만들고, 공유하고, 배울 수 있는 터전이
되고자 합니다.
아이디와 비밀번호를 잊으셨나요?아이디 / 비밀번호 찾기
코코아팹 회원이 아니신가요? 회원가입
전류센서 값 평균값 질문입니다,
kcy951 | 2017-07-12
|
|
---|---|
int Relaypin4 = 7; const int analogIn = A1; float mVperAmp = 66; // use 100 for 20A Module and 66 for 30A Module int Count = 0; double ACSoffset = 2500.0; double Voltage = 0, Voltage_re = 0; double mAmps = 0, mAmps_re = 0, mA = 0; double Factor = 48.8; // count = 1024/Vcc *(Vcc/2 + 0.1*i)
Serial.begin(9600);
Count = analogRead(analogIn);
mA = Factor * (Count - 512); Serial.print(Count); Serial.print("\t / mV = "); // shows the voltage measured Serial.print(Voltage,2); // the '2' after voltage allows you to display 2 digits after decimal point
Serial.print(mAmps,2); // the '2' after voltage allows you to display 2 digits after decimal point
Serial.println(mA,2); // the '2' after voltage allows you to display 2 digits after decimal point
while(1){ }
알려주시면 감사하겠습니다. |
|
이전글 | 아두이노 질문 | 2017-07-11 |
다음글 | 오렌지BLE 블루투스 버젼 확인 방법 | 2017-07-12 |