本文整理汇总了Python中Adafruit_Thermal.bold_off方法的典型用法代码示例。如果您正苦于以下问题:Python Adafruit_Thermal.bold_off方法的具体用法?Python Adafruit_Thermal.bold_off怎么用?Python Adafruit_Thermal.bold_off使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Adafruit_Thermal
的用法示例。
在下文中一共展示了Adafruit_Thermal.bold_off方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: chr
# 需要导入模块: import Adafruit_Thermal [as 别名]
# 或者: from Adafruit_Thermal import bold_off [as 别名]
deg = chr(0xf8) # Degree symbol on thermal printer
# Fetch forecast data from Yahoo!, parse resulting XML
dom = parseString(urllib.urlopen(
'http://weather.yahooapis.com/forecastrss?w=' + WOEID).read())
# Print heading
printer.inverse_on()
printer.print('{:^32}'.format(
dom.getElementsByTagName('description')[0].firstChild.data))
printer.inverse_off()
# Print current conditions
printer.bold_on()
printer.print('{:^32}'.format('Current conditions:'))
printer.bold_off()
printer.print('{:^32}'.format(
dom.getElementsByTagName('pubDate')[0].firstChild.data))
temp = dom.getElementsByTagName('yweather:condition')[0].getAttribute('temp')
cond = dom.getElementsByTagName('yweather:condition')[0].getAttribute('text')
printer.print(temp)
printer.print(deg)
printer.print_line(' ' + cond)
printer.bold_on()
# Print forecast
printer.print('{:^32}'.format('Forecast:'))
printer.bold_off()
forecast(0)
forecast(1)