Kaynağa Gözat

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

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
Brendan Le Foll 10 yıl önce
ebeveyn
işleme
9c34b829ef
1 değiştirilmiş dosya ile 3 ekleme ve 3 silme
  1. 3
    3
      examples/4digitdisplay.cxx

+ 3
- 3
examples/4digitdisplay.cxx Dosyayı Görüntüle

@@ -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