ソースを参照

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