1 Star 0 Fork 18

HOPE / SimpleFOCStudio

forked from ream_d / SimpleFOCStudio 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
simpleFOCStudio.py 876 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jorge Maker 提交于 2021-02-24 12:54 . Added TreeviewTool
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" This module contains ans script to start the SimpleFOC ConfigTool, a GIU
application ta monitor, tune and configure BLDC motor controllers based on
SimpleFOC library.
"""
from PyQt5 import QtWidgets
from src.gui.mainWindow import UserInteractionMainWindow
import sys
import logging
if __name__ == '__main__':
try:
logging.basicConfig(filename='.SimpleFOCConfigTool.log', filemode='w',
format='%(name)s - %(levelname)s - %(message)s')
app = QtWidgets.QApplication(sys.argv)
mainWindow = QtWidgets.QMainWindow()
userInteractionMainWindow = UserInteractionMainWindow()
userInteractionMainWindow.setupUi(mainWindow)
mainWindow.show()
sys.exit(app.exec_())
except Exception as exception:\
logging.error(exception, exc_info=True)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ZhangH365/SimpleFOCStudio.git
git@gitee.com:ZhangH365/SimpleFOCStudio.git
ZhangH365
SimpleFOCStudio
SimpleFOCStudio
main

搜索帮助

344bd9b3 5694891 D2dac590 5694891