python lcd 时间显示
#!/usr/bin/python
# QStopWatch -- a very simple stop watch
# Copyright (C) 2006 Dominic Battre <dominic {at} battre {dot} de>
# Copyright (C) 2013 ActivityWorkshop.net
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public
# License along with this program; if not, write to the Free
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
# Versions:
# 2006-11-18 version 1.0 - simple but fully functional stop watch
# 2006-11-18 version 1.0.1 - fixed problem with QString vs. Python string
# Obtained from http://kde-apps.org/content/show.php/QStopWatch?content=48810
# 2013-06-19 version 1.1 - ported to python 2.7, qt4; used QLCDNumber for time display
import sys
from PyQt4 import QtGui, QtCore
class MainWindow(QtGui.QMainWindow):
DEFAULT_WINDOW_TITLE = "Stopwatch"
def __init__(self, *args):
apply(QtGui.QMainWindow.__init__, (self,) + args)
self.mainWidget = QtGui.QWidget(self);
self.setCentralWidget(self.mainWidget);
self.mainLayout = QtGui.QVBoxLayout(self.mainWidget)
self.buttonsWidget = QtGui.QWidget(self.mainWidget);
self.buttonsLayout = QtGui.QHBoxLayout(self.buttonsWidget)
self.txTime = QtGui.QLCDNumber(self.mainWidget);
self.txTime.setSegmentStyle(QtGui.QLCDNumber.Flat);
self.bnStart = QtGui.QPushButton("&Start", self.buttonsWidget);
self.bnClear = QtGui.QPushButton("&Clear", self.buttonsWidget);
self.connect(self.bnStart, QtCore.SIGNAL("clicked()"), self.slotBnStartClicked)
self.connect(self.bnClear, QtCore.SIGNAL("clicked()"), self.slotBnClearClicked)
self.buttonsLayout.addWidget(self.bnStart);
self.buttonsLayout.addWidget(self.bnClear);
self.mainLayout.addWidget(self.txTime);
self.mainLayout.addWidget(self.buttonsWidget);
self.counting = False;
self.msInLastLaps = 0;
self.timer = QtCore.QTimer(self);
self.connect(self.timer, QtCore.SIGNAL("timeout()"), self.slotTimerEvent);
self.displayTime(0, False)
self.setWindowTitle(self.DEFAULT_WINDOW_TITLE)
# reduce to minimum size
self.resize(self.minimumSizeHint())
def displayTime(self, msecs, exact):
ms = msecs % 1000
msecs /= 1000
sec = msecs % 60
msecs /= 60
min = msecs % 60
msecs /= 60
hours = msecs
if exact:
timestring = '%02d:%02d:%02d.%03d' % (hours, min, sec, ms)
self.txTime.setNumDigits(12 if hours > 0 else 9)
self.txTime.display(timestring)
self.setWindowTitle(self.DEFAULT_WINDOW_TITLE)
else:
timestring = '%02d:%02d:%02d' % (hours, min, sec)
self.txTime.setNumDigits(8 if hours > 0 else 5)
self.txTime.display(timestring)
self.setWindowTitle(timestring)
def slotBnStartClicked(self):
if ( self.counting ) :
print "stop ", str(QtCore.QTime.currentTime().toString())
self.timer.stop();
self.msInLastLaps += self.startTime.msecsTo(QtCore.QTime.currentTime());
self.displayTime(self.msInLastLaps, True)
self.bnStart.setText("&Start")
else:
self.startTime = QtCore.QTime.currentTime()
print "start ", str(self.startTime.toString())
self.timer.start(500)
self.bnStart.setText("&Stop")
self.slotTimerEvent()
self.counting = not self.counting
def slotBnClearClicked(self):
print "clear";
self.msInLastLaps = 0;
self.startTime = QtCore.QTime.currentTime()
self.displayTime(0, not self.counting)
def slotTimerEvent(self):
self.displayTime(self.msInLastLaps + self.startTime.msecsTo(QtCore.QTime.currentTime()), False)
# Main method as the program entry point
def main(args):
app = QtGui.QApplication(args)
win = MainWindow()
win.show()
app.connect(app, QtCore.SIGNAL("lastWindowClosed()"), app, QtCore.SLOT("quit()"))
app.exec_()
if __name__=="__main__":
main(sys.argv)

python lcd 时间显示的更多相关文章
- python中时间格式
问题:通过MySQLdb查询datetime字段,然后通过浏览器显示出来,得到的格式是: 'Thu, 19 Feb 2009 16:00:07 GMT' (http呈现出来的格式) ...
- python datetime 时间日期处理小结
python datetime 时间日期处理小结 转载请注明出处:http://hi.baidu.com/leejun_2005/blog/item/47f340f1a85b5cb3a50f5232. ...
- python 的时间与日期
显示当前日期: import time print time.strftime('%Y-%m-%d %A %X %Z',time.localtime(time.time())) 或者 你也可以用: p ...
- python(时间模块,序列化模块等)
一.time模块 表示时间的三种方式: 时间戳:数字(计算机能认识的) 时间字符串:t='2012-12-12' 结构化时间:time.struct_time(tm_year=2017, tm_mon ...
- Python之时间表示
Python的time模块中提供了丰富的关于时间操作方法,可以利用这些方法来完成这个需求. time.time() :获取当前时间戳 time.ctime(): 当前时间的字符串形式 time.loc ...
- 1、Python 日期时间格式化输出
今天帮朋友写自动化脚本,又需要用格式化日期,又忘记怎么写了,还是写到自己博客里面,方便日后需要的时候看一眼吧.So,临时加一篇 Python 的文章. 1.Python的time模块 import t ...
- 【STM32H7教程】第51章 STM32H7的LTDC应用之LCD汉字显示和2D图形显示
完整教程下载地址:http://www.armbbs.cn/forum.php?mod=viewthread&tid=86980 第51章 STM32H7的LTDC应用之LCD汉字 ...
- 痞子衡嵌入式:记录i.MXRT1060驱动LCD屏显示横向渐变色有亮点问题解决全过程(提问篇)
大家好,我是痞子衡,是正经搞技术的痞子.今天痞子衡给大家分享的是i.MXRT1060上LCD横向渐变色显示出亮点问题的分析解决经验. 痞子衡前段时间在支持一个i.MXRT1060客户项目时遇到了LCD ...
- js获取当前时间显示在页面上
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8" ...
随机推荐
- .NET基础拾遗(7)多线程开发基础1
一.多线程编程的基本概念 1.1 操作系统层面的进程和线程 (1)进程 进程代表了操作系统上运行着的一个应用程序.进程拥有自己的程序块,拥有独占的资源和数据且可以被操作系统调度. But,即使是同一个 ...
- HTML1.0 - html 环境搭建 开发工具
1. mac 电脑 2. Hbuilder 开发软件 3. 学习基础 HTML 语法 网站 http://www.w3school.com.cn
- WPF DataGrid 之数据绑定
1. Auto generation of columns 最简单的方法莫过于让DataGrid根据数据源中的字段自动生成列了: 根据实体类的公共属性, 能够自动生成四种类型的数据列,对应关系如下: ...
- UIButton上图片和文字的位置调整
UIButton 上默认是图片在左文字在右,而大多数情况这样默认的的显示形式都不能满足我们的需求,接下来我就这个问题分享一下我的心得. 默认情况下,不设置的效果,都是居中实现 UIButton *bu ...
- node.js 上传文件
在工作中碰到了这样的需求,需要用nodejs 来上传文件,之前也只是知道怎么通过浏览器来上传文件, 用nodejs的话, 相当于模拟浏览器的行为. google 了一番之后, 明白了浏览器无非就 ...
- 轻松完成WAP手机网站搭建
用PHPCMS最新发布的V9搭建了PHPCMS研究中心网站(http://phpcms.org.cn)完成后,有用户提出手机访问的问题,于是着手搭建WAP无线站(wap.phpcms.org.cn). ...
- u盘禁用
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\USBSTOR]" ...
- GridView Footer页脚统计实现多行
在使用GridView时有时会需要多行显示页脚Footer的统计,下面是一种解决方法,仅仅供各位参考 在GridView的RowCreated事件中添加多行页脚,实例代码如下: protected v ...
- U盘装系统系列二—-如何设置U盘启动
老毛桃U盘启动制作好之后,如何设置U盘启动呢?我的是华硕的电脑,开机后按F2进入BIOS设置(不同主板可能不一样,比如有的是按向下键或者Del键,可以在网上查下看看),按Tab键选中Boot:按向下键 ...
- U盘装系统系列一—-安装老毛桃U盘启动制作工具
今天跟大家分享下如何制作U盘启动盘,通过U盘启动来安装操作系统.U盘便于携带,同时能解决光驱出问题装不了系统的麻烦,可谓是装机利器!我一直用的都是老毛桃的U盘启动制作工具,很好用,很强大,就以它来演示 ...