2016年3月2日 星期三

LinkIt Smart 7688上 使用G3 PM2.5 Sensor (PMS3003) + SHT2x Humidity & Temperature Sensor, 量測空氣品質及溫濕度,並在網頁即時顯示相關數據(MQTT Broker)。




Reference : https://github.com/future/Linkit7688_PM2.5

C++ day 2


call by reference
引數加上 const 的好處
1.   避免修改原來的好處
2.  遇到型態不符或是型態相符但沒有資料品項可代表時
會產生暫時變數


class Stock{


private:
        char company[30];
         int    shares
         double    share_val;
         double   total_val;
         void set_tot() {total_val = shares* share_val;}
public:


};


void  Stock::acquire(const char* co, int n, doulbe pr)
{
   std::

}

show
{
  using  std::cout;
  using  std::endl;
  cout << "Company: " << company
           << " Shares:  "


}



int main()
{
   using std::cout;
   using std::endl;



}

這個const 是代表不能去修改物件本身的內容

void  Stock::acquire(const char* co, int n, doulbe pr) const
{
   std::

}

智慧小車 part 2



第二塊  驅動版終於來了......




前半部所用的GPIO為  6 ,13 ,19,26    ....  剛好是   左下四根腳

後半部所用的GPIO 為   12,16,20,21........剛好是   右下四根腳....


順便整合攝影機吧....