Add Sunrise x3 Pi Python program, modify some programs to speed up data transfer.
This commit is contained in:
parent
979184d047
commit
88bbf456c6
28 changed files with 709 additions and 453 deletions
|
@ -30,29 +30,29 @@ try:
|
|||
font18 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 18)
|
||||
font30 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 40)
|
||||
|
||||
|
||||
# Drawing on the image
|
||||
logging.info("1.Drawing on the image...")
|
||||
Himage = Image.new('RGB', (epd.width, epd.height), 0xffffff)
|
||||
draw = ImageDraw.Draw(Himage)
|
||||
draw.text((5, 0), 'hello world', font = font18, fill = epd.RED)
|
||||
draw.text((5, 20), '1.64inch e-Paper', font = font18, fill = epd.YELLOW)
|
||||
draw.text((5, 40), u'微雪电子', font = font30, fill = epd.BLACK)
|
||||
# # The Sunrise X3 PI is a bit problematic to use
|
||||
# # Drawing on the image
|
||||
# logging.info("1.Drawing on the image...")
|
||||
# Himage = Image.new('RGB', (epd.width, epd.height), 0xffffff)
|
||||
# draw = ImageDraw.Draw(Himage)
|
||||
# draw.text((5, 0), 'hello world', font = font18, fill = epd.RED)
|
||||
# draw.text((5, 20), '1.64inch e-Paper', font = font18, fill = epd.YELLOW)
|
||||
# draw.text((5, 40), u'微雪电子', font = font30, fill = epd.BLACK)
|
||||
|
||||
draw.line((5, 90, 45, 160), fill = epd.RED)
|
||||
draw.line((45, 90, 5, 160), fill = epd.YELLOW)
|
||||
draw.rectangle((5, 90, 45, 160), outline = epd.BLACK)
|
||||
draw.rectangle((55, 90, 95, 160), fill = epd.BLACK)
|
||||
draw.arc((115, 90, 150, 125), 0, 360, fill = epd.BLACK)
|
||||
draw.chord((115, 130, 150, 165), 0, 360, fill = epd.BLACK)
|
||||
epd.display(epd.getbuffer(Himage))
|
||||
time.sleep(3)
|
||||
# draw.line((5, 90, 45, 160), fill = epd.RED)
|
||||
# draw.line((45, 90, 5, 160), fill = epd.YELLOW)
|
||||
# draw.rectangle((5, 90, 45, 160), outline = epd.BLACK)
|
||||
# draw.rectangle((55, 90, 95, 160), fill = epd.BLACK)
|
||||
# draw.arc((115, 90, 150, 125), 0, 360, fill = epd.BLACK)
|
||||
# draw.chord((115, 130, 150, 165), 0, 360, fill = epd.BLACK)
|
||||
# epd.display(epd.getbuffer(Himage))
|
||||
# time.sleep(3)
|
||||
|
||||
# read bmp file
|
||||
logging.info("3.read bmp file")
|
||||
Himage = Image.open(os.path.join(picdir, '1.64inch-1.bmp'))
|
||||
epd.display(epd.getbuffer(Himage))
|
||||
time.sleep(3)
|
||||
# # read bmp file
|
||||
# logging.info("3.read bmp file")
|
||||
# Himage = Image.open(os.path.join(picdir, '1.64inch-1.bmp'))
|
||||
# epd.display(epd.getbuffer(Himage))
|
||||
# time.sleep(3)
|
||||
|
||||
logging.info("3.read bmp file")
|
||||
Himage = Image.open(os.path.join(picdir, '1.64inch-2.bmp'))
|
||||
|
|
|
@ -22,7 +22,7 @@ try:
|
|||
epd = epd2in13d.EPD()
|
||||
logging.info("init and Clear")
|
||||
epd.init()
|
||||
epd.Clear(0xFF)
|
||||
epd.Clear()
|
||||
|
||||
font15 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 15)
|
||||
font24 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 24)
|
||||
|
@ -60,7 +60,7 @@ try:
|
|||
# partial update
|
||||
logging.info("5.show time...")
|
||||
# epd.init()
|
||||
# epd.Clear(0xFF)
|
||||
# epd.Clear()
|
||||
# time_image = Image.new('1', (epd.width, epd.height), 255)
|
||||
# time_draw = ImageDraw.Draw(time_image)
|
||||
# num = 0
|
||||
|
@ -76,7 +76,7 @@ try:
|
|||
|
||||
logging.info("Clear...")
|
||||
epd.init()
|
||||
epd.Clear(0xFF)
|
||||
epd.Clear()
|
||||
|
||||
logging.info("Goto Sleep...")
|
||||
epd.sleep()
|
||||
|
|
|
@ -21,7 +21,7 @@ try:
|
|||
epd = epd2in9d.EPD()
|
||||
logging.info("init and Clear")
|
||||
epd.init()
|
||||
epd.Clear(0xFF)
|
||||
epd.Clear()
|
||||
|
||||
font24 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 24)
|
||||
font18 = ImageFont.truetype(os.path.join(picdir, 'Font.ttc'), 18)
|
||||
|
@ -77,7 +77,7 @@ try:
|
|||
# # partial update
|
||||
logging.info("5.show time...")
|
||||
epd.init()
|
||||
epd.Clear(0xFF)
|
||||
epd.Clear()
|
||||
|
||||
time_image = Image.new('1', (epd.width, epd.height), 255)
|
||||
time_draw = ImageDraw.Draw(time_image)
|
||||
|
@ -94,7 +94,7 @@ try:
|
|||
|
||||
epd.init()
|
||||
logging.info("Clear...")
|
||||
epd.Clear(0xFF)
|
||||
epd.Clear()
|
||||
time.sleep(2)
|
||||
logging.info("Goto Sleep...")
|
||||
epd.sleep()
|
||||
|
|
|
@ -16,7 +16,7 @@ import traceback
|
|||
logging.basicConfig(level=logging.DEBUG)
|
||||
|
||||
try:
|
||||
logging.info("epd2in9 Demo")
|
||||
logging.info("epd3in52 Demo")
|
||||
|
||||
epd = epd3in52.EPD()
|
||||
logging.info("init and Clear")
|
||||
|
|
|
@ -16,7 +16,7 @@ import traceback
|
|||
logging.basicConfig(level=logging.DEBUG)
|
||||
|
||||
try:
|
||||
logging.info("epd1in64g Demo")
|
||||
logging.info("epd7in3g Demo")
|
||||
|
||||
BLACK = 0x00
|
||||
WHITE = 0x55
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue