2016_mbed_iot_project


student project

Simple yotta module structure

以下是一個最簡單的 yotta module 結構

fxos8700cq/
├── fxos8700cq
│   └── fxos8700cq.h
├── module.json
├── README.md
├── source
│   └── fxos8700cq.cpp
└── test

其中, module.json 的結構如下

{
  "name": "fxos8700cq",
  "version": "0.1.5",
  "description": "K64F Acclerometer Driver",
  "keywords": [],
  "author": "Doug Anson",
  "license": "Apache-2.0",
  "dependencies": {
        "mbed-drivers": "^1.2.0"
  }
}

當主程是需要引用此header file 時 只需要如此宣告 就能使用相關的涵式

#include "fxos8700cq/fxos8700cq.h"

All wikipages