rascalmicro 发表于 2014-10-30 12:51:07

演示视频hello world

http://www.tudou.com/programs/view/kQdq3bmAR54/

rascalmicro 发表于 2014-10-31 09:29:51

上传上面的演示程序 一段代码 有兴趣的朋友可任意了解下。
需要的一些基础知道 html CSS Javascript DOM这些 有些坚涩的语法,是跟 web server上的应用引擎相关。 硬件的控制完成是 通过 POST方法实现, 实现方法在 服务器上,通过python调用linux GPIO驱动最终完成。<!DOCTYPE html>
<!-- 20 Jun 2012 dsmall -->
<html lang="en">
<head>
    <title>Hello World</title>
    {% include "include/rascal-head.html" %}
</head>
<body>
    {% include "include/rascal-topbar.html" %}
    <div class="container">
      <div class="well rascal">
            <h1>hello world</h1>
            <p>&nbsp;</p>
            <input id="flash_led" type="button" value="Flash LED" class="btn btn-large btn-danger rascal" />
            <span id="message"></span>
      </div>
    </div>
    <script type="text/javascript">
      $("#flash_led").click(function () {
            $.post("/flash_led", function (response) {
                $("#message").text(response);
            });
      });
    </script>
</body>
</html>

ghcl 发表于 2014-11-9 13:29:41

9G20没听说过吗?

rascalmicro 发表于 2014-11-18 11:25:22

本核心板的扩展开发 demo 有重新单独开贴,敬请关注!

gmcg 发表于 2014-11-28 22:35:25

:)不错,板子的布线很漂亮
页: 1 [2]
查看完整版本: 基于Ateml 9G20的 物联网开发板