336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
의뢰는 instructables.tistory.com/64 로 방문해주세요
Naver
0t0i0d0i0@gmail.com
AndroidManifest.xml 이게 Library에 해당한다.
onStart 여기가 오른쪽 상단의 메뉴나오게 하는 부분이다.
public void onButton_set1(View v)
{
byte packet[] = new byte[8];
packet[0] = 'M'; //아두이노에 M전송 Set버튼
//입력한 시간 저장
if(tv_morning_h.length() == 2) //10~24시 입력시 (2자리수 입력이므로)
{
packet[1] = (byte) tv_morning_h.getText().charAt(0);
packet[2] = (byte) tv_morning_h.getText().charAt(1);
}