48 Star 167 Fork 42

唐佐林 / Python for OpenHarmony

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

Python for HOS

介绍

这个仓库是为了能够在鸿蒙设备上使用 Python 进行应用程序开发而创建。
0. 使用Python开发鸿蒙设备程序(0-初体验)
1. 使用Python开发鸿蒙设备程序(1-GPIO外设控制)
2. 使用Python开发鸿蒙设备程序(2-I2C应用实例)

软件架构

这个仓库的 Baseline 是 MicroPython v1.13,在 MicroPython 的基础上进行了必要的剪裁以满足 OpenHarmony 上的应用开发需求。

编译说明

  1. 编译环境:
    1)OS - Ubuntu 16+
    2)Make - 3.81+
    3)Python - 3.8+
  2. 配置项路径:
    1)打开源码根目录中的 Makefile
    2)配置项目路径,如: PROPATH = /home/harmony/harmony/code/code-1.0 3)配置编译器路径,如:CMPPATH = /home/harmony/gcc_riscv32/bin
  3. 在源码根目录中执行 make

使用说明

  1. 将编译得到的库文件 //build/libdtpython.a 拷贝到 //vendor/hisi/hi3861/hi3861/build/libs 目录下,如图: 输入图片说明
  2. 在设备应用中加载 Python 并执行代码
static void* DTPython_Demo_Task(const char* arg)
{
    printf("[dt4sw] DTPython_Demo_Task()\n");

    PrepareScript("main.py", c_main_py);                 // 在设备上创建文件:main.py
    PrepareScript("test.py", c_test_py);                 // 在设备上创建文件:test.py
    PrepareScript("another.py", c_another_py);           // 在设备上创建文件:another.py

    DTPython_Init();                                     // 初始化Python环境

    DTPython_RunCode("print(\'Python Code Begin\')");    // 执行Python语句:print('Python Code Begin')
    
    DTPython_RunCode("s = \'Created by Delphi Tang\'");  // 执行Python语句:s = 'Created by Delphi Tang'

    DTPython_RunCode("print(s)");                        // 执行Python语句:print(s)

    DTPython_RunFile("main.py");                         // 执行Python文件:main.py

    DTPython_RunCode("print(\'Python Code End\')");      // 执行Python语句:print('Python Code End')

    DTPython_Deinit();                                   // 清理Python环境

    return (void*)arg;
}
MIT License Copyright (c) 2020 唐佐林 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

在鸿蒙设备上使用 Python 编程。 展开 收起
C 等 3 种语言
MIT
取消

贡献者

全部

近期动态

加载更多
不能加载更多了
C
1
https://gitee.com/delphi-tang/python-for-hos.git
git@gitee.com:delphi-tang/python-for-hos.git
delphi-tang
python-for-hos
Python for OpenHarmony
master

搜索帮助

14c37bed 8189591 565d56ea 8189591