정보나눔

오픈소스하드웨어 프로젝트에 대한 다양한 정보를 나누는 공간입니다.

날씨를 알려주는 조명 날씨 데이터를 받아오는 코딩중에서요
열심히 | 2017-11-27

아두이노 날씨정보를 알려주는 구름조명을 만들고있는데 날씨데이터를 받아오는 부분은 이렇게만 적으면 되나요? ino코딩 바로 다음에 날씨데이터를 받아오는 코딩 바로 적으니 자꾸 오류가 나더라구요 어떻게 써야하는건가요

 

 

if ( currentLine.endsWith("         readingWeather = true; 
        weatherString = " ";       }      

      if (readingWeather) {
        if (inChar != 'v') { //다음 전송될 문자가 'v'가 아니라면 계속 날씨 데이터(코드)를 받는다.
          weatherString += inChar;
        } 
        else { //다음 전송된 문자가 'v'라면 날씨 데이터(코드)를 출력한다.
          readingWeather = false;
          weather = getInt(weatherString);
          weatherpixel();
          Serial.print("weather code: ");
          Serial.println(weather);
        }
      }

ino코드 다운받아서 제일 뒤에 저렇게 가져다 붙였는데

 

weather_tracking:334: error: expected unqualified-id before 'if'

    if ( currentLine.endsWith){         readingWeather = true;

    ^

weather_tracking:337: error: expected unqualified-id before 'if'

       if (readingWeather) {

       ^

exit status 1
expected unqualified-id before 'if'

 

이런식으로 자꾸 에러가나요 어떻게 해야하는건가요 ㅠㅠ

이전글   |    컴파일에러관련 질문입니다. 2017-11-26
다음글   |    아두이노에서 php 에 띄운 json 형태의 데이터를 가져오는 법??... 2017-11-27