소스 검색

4digitdisplay.cxx: add Interesting tag and remove pointless array

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
Brendan Le Foll 10 년 전
부모
커밋
9c34b829ef
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3
    3
      examples/4digitdisplay.cxx

+ 3
- 3
examples/4digitdisplay.cxx 파일 보기

@@ -29,10 +29,10 @@
29 29
 int
30 30
 main(int argc, char **argv)
31 31
 {
32
-    uint8_t data[] = { 0xaa, 0xff, 0xff, 0xff };
33
-
32
+    //! [Interesting]
34 33
     upm::TM1637 *display = new upm::TM1637(8, 9); // di - 8, dcki - 9
35
-    display->write ("1981");
34
+    display->write ("1337");
35
+    //! [Interesting]
36 36
     
37 37
     std::cout << "exiting application" << std::endl;
38 38