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" ...
随机推荐
- CSU1659: Graph Center(最短路)
Description The center of a graph is the set of all vertices of minimum eccentricity, that is, the s ...
- 三、Solr多核心及分词器(IK)配置
多核心的概念 多核心说白了就是多索引库.也可以理解为多个"数据库表" 说一下使用multicore的真实场景,比若说,产品搜索和会员信息搜索,不使用多核也没问题,这样带来的问题是 ...
- SQLServer中跨库复制数据
SQLServer中把某个表里的记录复制到另一个数据库的表中的操作方法. 场景 现有数据库a和数据库b,数据库a里有表table1,数据库b里有表table2.现在要把表table1里的记录复制到ta ...
- 第四章 Activity和Activity调用栈分析 系统信息与安全机制 性能优化
1.Activity生命周期理解生命周期就是两张图:第一张图是回字型的生命周期图第二张图是金字塔型的生命周期图 注意点(1)从stopped状态重新回到前台状态的时候会先调用onRestart方法,然 ...
- 从前有个聊天室(socket&threading)
服务器端: # -*- coding: utf-8 -*- import socket, threading con = threading.Condition() HOST = raw_input( ...
- 关于Discuz!nt论坛编辑器图片上传bug,flash域的问题
正在整discuz!nt,现在没有什么人弄了把? 上个星期突然来了个bug,搞死我了,论坛图片不能上传,上传卡在100%没反应了,于是我发现ajax发送到AttachUpload.cs时queryst ...
- amchart
amchart能够根据提供的数据便捷的生成好看的图标,曾在项目中遇到使用falsh版以支持对js支持不好的低版本浏览器,但是现在官网上都是js版本的,flash版的文档都没有,搜索结果一般都是链接到博 ...
- PHP页面中文乱码问题
首先纯html页要用meta标签声明编码<meta http-equiv="Content-Type" content="text/html; charset=&q ...
- MySQL主从问题
Mysql数据库主从心得整理 管理mysql主从有2年多了,管理过200多组mysql主从,几乎涉及到各个版本的主从,本博文属于总结性的,有一部分是摘自网络,大部分是根据自己管理的心得和经验 ...
- MySQL跨表更新字段 工作记录
工作中遇到两表查询,从user表中获取用户唯一id字段 写入到另外一张qiuzu表中的uid字段中; 二者可以关联起来的只有用户的手机号码tel字段; 了解需求后数据量稍多,不可能一个一个的手动修改 ...