내 LGT 갤탭은 3g가 아닌 wifi로만 쓰고 있어서 막 테스트하고 있다. 

xda에 떴던 갤탭 아이스크림 이미지( ICS+P1000-+alpha+4 )를 LGT에 함 구워봤다. 안된다. 삼성 로고 나오고 바로 로고 이미지 사라진다. 아마도 커널 패닉 난 것 같다. 


로그로 봐서는 /cache 디렉토리 권한이랑 연관되어 있는 것 같다.  mount도 안되구..  
그리고, 삼성 이미지를 다운로드 하라고 했지만, Odin으로 TI09이미로 복구했다. 

소스에서 일부 이슈있는 것들을 걷어내면 괜찮을까 싶어서.. 컴파일해야겠다는 생각이 든다. 쩝..
과연 내가 할 수 있을까?

아래 내용을 바탕으로 컴파일해보고, 계속 테스트해봐야지. 그때까지 나의 갤택이 벽돌이 안되길..
http://forum.xda-developers.com/showthread.php?t=1385153 

 
Posted by '김용환'
,

 

아트로봇에서 tmp36을 구매해서 아래 링크를 참조로 해서 회로도를 구성했다.

http://artrobot.co.kr/front/php/product.php?product_no=529&main_cate_no=&display_group=
http://www.ladyada.net/learn/sensors/tmp36.html
http://printk.tistory.com/42
http://www.ladyada.net/learn/sensors/tmp36.html




(이미지 참조 : http://www.ladyada.net/learn/sensors/tmp36.html)

내가 원하는 정보는 섭씨 온도인데, 잘 나온다.

int sensorPin = 0;

void setup() {
Serial.begin(9600);
}

void loop() {
int reading = analogRead(sensorPin); 
float voltage = reading * 5.0 / 1024.0;

float temperatureC = (voltage - 0.5) * 100 ;
Serial.println(temperatureC);
delay(1000);   
  
}

float getVoltage(int pin){
  return (analogRead(pin) * .004882814);
}

 

다만, 이 수식이 전류의 흐름이 불확실해지면 정보는 정확하지 않게 나오는 단점이 있다.

Posted by '김용환'
,