CHIRIMEN I2C sensor

Created Date: 2015-07-25/ updated date: 2018-03-13
    Owner & Collaborators
    License
    Summary
    CHIRIMENでI2Cセンサを扱う方法。

    Memo

    index.html(温度)

    posted by Yamato-Ikeda on November 20, 2015
    <!doctype html>

    <html>
        <head>
            <meta charset="UTF-8" />
            <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
            <title>I2C ADT7410</title>
            <script src="./js/i2c.js"></script>
            <script src="./js/ADT7410.js"></script>
            <script src="./js/main.js"></script>
        </head>
        <body>
            <h3>I2C ADT7410 temperature sensor</h3>
            <div id="debug">temp</div>                                          /*元の温度表示*/
            <div id="debug" style="font-size:300px;">temp</div>  /*拡大表示*/
        </body>
    </html>

    Comments