diff --git a/etc/examples and tests/100x100.bmp b/etc/examples and tests/100x100.bmp deleted file mode 100644 index 8d0d675..0000000 Binary files a/etc/examples and tests/100x100.bmp and /dev/null differ diff --git a/etc/examples and tests/4in2.bmp b/etc/examples and tests/4in2.bmp deleted file mode 100644 index b380a1c..0000000 Binary files a/etc/examples and tests/4in2.bmp and /dev/null differ diff --git a/etc/examples and tests/buttonshimexamplepihole.py b/etc/examples and tests/buttonshimexamplepihole.py deleted file mode 100644 index fecf8e3..0000000 --- a/etc/examples and tests/buttonshimexamplepihole.py +++ /dev/null @@ -1,99 +0,0 @@ -#!/user/bin/env python - -import signal -import buttonshim -import time -import subprocess - -print(""" - Pi-Hole Button Control Running.... - - Press Ctrl+C to Exit. - """) - -#Cycle and clear LEDs on startup (visual indication the script is running) -buttonshim.set_pixel(255,0,0) -time.sleep(0.3) -buttonshim.set_pixel(0,255,0) -time.sleep(0.3) -buttonshim.set_pixel(0,0,255) -time.sleep(0.3) -buttonshim.set_pixel(0,0,0) -pressId = 0 - -while True: - def DisablePiholeTimer(numSecs): - global pressId - loopId = pressId - for i in range(0,numSecs): - if ( loopId != pressId): - print "Ending loop with ID: " + str(loopId) - return - print "Pi-Hole disabled for " + str(numSecs-i) - buttonshim.set_pixel(255,255,0) - time.sleep(0.5) - buttonshim.set_pixel(255,150,0) - time.sleep(0.5) - buttonshim.set_pixel(0,0,0) - print "Pi-Hole reenabled" - - def SuspendPihole(): - global pressId - loopId = pressId - print "Pi-Hole suspended" - while (loopId == pressId): - buttonshim.set_pixel(255,0,0) - time.sleep(0.5) - buttonshim.set_pixel(0,0,0) - time.sleep(0.5) - - def EnablePihole(): - global pressId - loopId = pressId - print "Pi-Hole enabled" - for i in range(0,2): - buttonshim.set_pixel(0,255,0) - time.sleep(0.3) - buttonshim.set_pixel(0,0,0) - time.sleep(0.3) - - - @buttonshim.on_press(buttonshim.BUTTON_A) - def button_a(button, pressed): - print "Disabling Pi-Hole for 300s" - global pressId - pressId += 1 - subprocess.call(['pihole','disable','300s']) - DisablePiholeTimer(int(300)) - - @buttonshim.on_press(buttonshim.BUTTON_B) - def button_b(button, pressed): - print "Disabling Pi-Hole for 1800s" - global pressId - pressId += 1 - subprocess.call(['pihole','disable','1800s']) - DisablePiholeTimer(int(1800)) - - @buttonshim.on_press(buttonshim.BUTTON_C) - def button_c(button, pressed): - print "This button, it does nothing" - - @buttonshim.on_press(buttonshim.BUTTON_D) - def button_d(button, pressed): - print "Suspending Pi-Hole" - global pressId - pressId += 1 - subprocess.call(['pihole','disable']) - SuspendPihole() - - @buttonshim.on_press(buttonshim.BUTTON_E) - def button_e(button, pressed): - print "Enabling Pi-Hole" - global pressId - pressId += 1 - subprocess.call(['pihole','enable']) - EnablePihole() - - - - signal.pause() diff --git a/etc/examples and tests/epd4in2.py b/etc/examples and tests/epd4in2.py deleted file mode 100644 index 567ae25..0000000 --- a/etc/examples and tests/epd4in2.py +++ /dev/null @@ -1,279 +0,0 @@ -# /***************************************************************************** -# * | File : EPD_1in54.py -# * | Author : Waveshare team -# * | Function : Electronic paper driver -# * | Info : -# *---------------- -# * | This version: V3.0 -# * | Date : 2018-11-06 -# * | Info : python2 demo -# * 1.Remove: -# digital_write(self, pin, value) -# digital_read(self, pin) -# delay_ms(self, delaytime) -# set_lut(self, lut) -# self.lut = self.lut_full_update -# * 2.Change: -# display_frame -> TurnOnDisplay -# set_memory_area -> SetWindow -# set_memory_pointer -> SetCursor -# get_frame_buffer -> getbuffer -# set_frame_memory -> display -# * 3.How to use -# epd = epd2in7.EPD() -# epd.init(epd.lut_full_update) -# image = Image.new('1', (epd1in54.EPD_WIDTH, epd1in54.EPD_HEIGHT), 255) -# ... -# drawing ...... -# ... -# epd.display(getbuffer(image)) -# ******************************************************************************/ -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documnetation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. -# - - -import epdconfig -from PIL import Image -import RPi.GPIO as GPIO - -# Display resolution -EPD_WIDTH = 400 -EPD_HEIGHT = 300 - -# GDEW042T2 commands -PANEL_SETTING = 0x00 -POWER_SETTING = 0x01 -POWER_OFF = 0x02 -POWER_OFF_SEQUENCE_SETTING = 0x03 -POWER_ON = 0x04 -POWER_ON_MEASURE = 0x05 -BOOSTER_SOFT_START = 0x06 -DEEP_SLEEP = 0x07 -DATA_START_TRANSMISSION_1 = 0x10 -DATA_STOP = 0x11 -DISPLAY_REFRESH = 0x12 -DATA_START_TRANSMISSION_2 = 0x13 -LUT_FOR_VCOM = 0x20 -LUT_WHITE_TO_WHITE = 0x21 -LUT_BLACK_TO_WHITE = 0x22 -LUT_WHITE_TO_BLACK = 0x23 -LUT_BLACK_TO_BLACK = 0x24 -PLL_CONTROL = 0x30 -TEMPERATURE_SENSOR_COMMAND = 0x40 -TEMPERATURE_SENSOR_SELECTION = 0x41 -TEMPERATURE_SENSOR_WRITE = 0x42 -TEMPERATURE_SENSOR_READ = 0x43 -VCOM_AND_DATA_INTERVAL_SETTING = 0x50 -LOW_POWER_DETECTION = 0x51 -TCON_SETTING = 0x60 -RESOLUTION_SETTING = 0x61 -GSST_SETTING = 0x65 -GET_STATUS = 0x71 -AUTO_MEASUREMENT_VCOM = 0x80 -READ_VCOM_VALUE = 0x81 -VCM_DC_SETTING = 0x82 -PARTIAL_WINDOW = 0x90 -PARTIAL_IN = 0x91 -PARTIAL_OUT = 0x92 -PROGRAM_MODE = 0xA0 -ACTIVE_PROGRAMMING = 0xA1 -READ_OTP = 0xA2 -POWER_SAVING = 0xE3 -class EPD: - def __init__(self): - self.reset_pin = epdconfig.RST_PIN - self.dc_pin = epdconfig.DC_PIN - self.busy_pin = epdconfig.BUSY_PIN - self.width = EPD_WIDTH - self.height = EPD_HEIGHT - - lut_vcom0 = [ - 0x00, 0x17, 0x00, 0x00, 0x00, 0x02, - 0x00, 0x17, 0x17, 0x00, 0x00, 0x02, - 0x00, 0x0A, 0x01, 0x00, 0x00, 0x01, - 0x00, 0x0E, 0x0E, 0x00, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - ] - lut_ww = [ - 0x40, 0x17, 0x00, 0x00, 0x00, 0x02, - 0x90, 0x17, 0x17, 0x00, 0x00, 0x02, - 0x40, 0x0A, 0x01, 0x00, 0x00, 0x01, - 0xA0, 0x0E, 0x0E, 0x00, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - ] - lut_bw = [ - 0x40, 0x17, 0x00, 0x00, 0x00, 0x02, - 0x90, 0x17, 0x17, 0x00, 0x00, 0x02, - 0x40, 0x0A, 0x01, 0x00, 0x00, 0x01, - 0xA0, 0x0E, 0x0E, 0x00, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - ] - lut_wb = [ - 0x80, 0x17, 0x00, 0x00, 0x00, 0x02, - 0x90, 0x17, 0x17, 0x00, 0x00, 0x02, - 0x80, 0x0A, 0x01, 0x00, 0x00, 0x01, - 0x50, 0x0E, 0x0E, 0x00, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - ] - lut_bb = [ - 0x80, 0x17, 0x00, 0x00, 0x00, 0x02, - 0x90, 0x17, 0x17, 0x00, 0x00, 0x02, - 0x80, 0x0A, 0x01, 0x00, 0x00, 0x01, - 0x50, 0x0E, 0x0E, 0x00, 0x00, 0x02, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - ] - - # Hardware reset - def reset(self): - epdconfig.digital_write(self.reset_pin, GPIO.HIGH) - epdconfig.delay_ms(200) - epdconfig.digital_write(self.reset_pin, GPIO.LOW) # module reset - epdconfig.delay_ms(200) - epdconfig.digital_write(self.reset_pin, GPIO.HIGH) - epdconfig.delay_ms(200) - - def send_command(self, command): - epdconfig.digital_write(self.dc_pin, GPIO.LOW) - epdconfig.spi_writebyte([command]) - - def send_data(self, data): - epdconfig.digital_write(self.dc_pin, GPIO.HIGH) - epdconfig.spi_writebyte([data]) - - def wait_until_idle(self): - while(epdconfig.digital_read(self.busy_pin) == 0): # 0: idle, 1: busy - epdconfig.delay_ms(100) - - def set_lut(self): - self.send_command(LUT_FOR_VCOM) # vcom - for count in range(0, 44): - self.send_data(self.lut_vcom0[count]) - self.send_command(LUT_WHITE_TO_WHITE) # ww -- - for count in range(0, 42): - self.send_data(self.lut_ww[count]) - self.send_command(LUT_BLACK_TO_WHITE) # bw r - for count in range(0, 42): - self.send_data(self.lut_bw[count]) - self.send_command(LUT_WHITE_TO_BLACK) # wb w - for count in range(0, 42): - self.send_data(self.lut_bb[count]) - self.send_command(LUT_BLACK_TO_BLACK) # bb b - for count in range(0, 42): - self.send_data(self.lut_wb[count]) - - def init(self): - if (epdconfig.module_init() != 0): - return -1 - # EPD hardware init start - self.reset() - - self.send_command(POWER_SETTING) - self.send_data(0x03) # VDS_EN, VDG_EN - self.send_data(0x00) # VCOM_HV, VGHL_LV[1], VGHL_LV[0] - self.send_data(0x2b) # VDH - self.send_data(0x2b) # VDL - self.send_command(BOOSTER_SOFT_START) - self.send_data(0x17) - self.send_data(0x17) - self.send_data(0x17) - self.send_command(POWER_ON) - self.wait_until_idle() - self.send_command(PANEL_SETTING) - self.send_data(0xbf) # KW-BF KWR-AF BWROTP 0f - self.send_data(0x0d) - self.send_command(PLL_CONTROL) - self.send_data(0x3c) # 3A 100HZ 29 150Hz 39 200HZ 31 171HZ - - self.send_command(0x61); # resolution setting - self.send_data(0x01); - self.send_data(0x90); # 128 - self.send_data(0x01); - self.send_data(0x2c); - - self.send_command(0x82); # vcom_DC setting - self.send_data(0x28); - - self.send_command(0X50); # VCOM AND DATA INTERVAL SETTING - self.send_data(0x97); # 97white border 77black border VBDF 17|D7 VBDW 97 VBDB 57 VBDF F7 VBDW 77 VBDB 37 VBDR B7 - - self.set_lut() - # EPD hardware init end - return 0 - - def getbuffer(self, image): - # print "bufsiz = ",(self.width/8) * self.height - buf = [0xFF] * ((self.width/8) * self.height) - image_monocolor = image.convert('1') - imwidth, imheight = image_monocolor.size - pixels = image_monocolor.load() - # print "imwidth = %d, imheight = %d",imwidth,imheight - if(imwidth == self.width and imheight == self.height): - print "Horizontal" - for y in range(imheight): - for x in range(imwidth): - # Set the bits for the column of pixels at the current position. - if pixels[x, y] == 0: - buf[(x + y * self.width) / 8] &= ~(0x80 >> (x % 8)) - elif(imwidth == self.height and imheight == self.width): - print "Vertical" - for y in range(imheight): - for x in range(imwidth): - newx = y - newy = self.height - x - 1 - if pixels[x, y] == 0: - buf[(newx + newy*self.width) / 8] &= ~(0x80 >> (y % 8)) - return buf - - def display(self, image): - self.send_command(DATA_START_TRANSMISSION_1) - for i in range(0, self.width * self.height / 8): - self.send_data(0xFF) - self.send_command(DATA_START_TRANSMISSION_2) - for i in range(0, self.width * self.height / 8): - self.send_data(image[i]) - self.send_command(DISPLAY_REFRESH) - self.wait_until_idle() - - def Clear(self, color): - self.send_command(DATA_START_TRANSMISSION_1) - for i in range(0, self.width * self.height / 8): - self.send_data(0xFF) - self.send_command(DATA_START_TRANSMISSION_2) - for i in range(0, self.width * self.height / 8): - self.send_data(0xFF) - self.send_command(DISPLAY_REFRESH) - self.wait_until_idle() - - def sleep(self): - self.send_command(POWER_OFF) - self.wait_until_idle() - self.send_command(DEEP_SLEEP) - self.send_data(0XA5) -### END OF FILE ### - diff --git a/etc/examples and tests/epdconfig.py b/etc/examples and tests/epdconfig.py deleted file mode 100644 index 78ff647..0000000 --- a/etc/examples and tests/epdconfig.py +++ /dev/null @@ -1,73 +0,0 @@ -# /***************************************************************************** -# * | File : EPD_1in54.py -# * | Author : Waveshare team -# * | Function : Hardware underlying interface -# * | Info : -# *---------------- -# * | This version: V2.0 -# * | Date : 2018-11-01 -# * | Info : -# * 1.Remove: -# digital_write(self, pin, value) -# digital_read(self, pin) -# delay_ms(self, delaytime) -# set_lut(self, lut) -# self.lut = self.lut_full_update -# ******************************************************************************/ -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documnetation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. -# - - -import spidev -import RPi.GPIO as GPIO -import time - -# Pin definition -RST_PIN = 17 -DC_PIN = 25 -CS_PIN = 8 -BUSY_PIN = 24 - -# SPI device, bus = 0, device = 0 -SPI = spidev.SpiDev(0, 0) - -def digital_write(pin, value): - GPIO.output(pin, value) - -def digital_read(pin): - return GPIO.input(BUSY_PIN) - -def delay_ms(delaytime): - time.sleep(delaytime / 1000.0) - -def spi_writebyte(data): - SPI.writebytes(data) - -def module_init(): - GPIO.setmode(GPIO.BCM) - GPIO.setwarnings(False) - GPIO.setup(RST_PIN, GPIO.OUT) - GPIO.setup(DC_PIN, GPIO.OUT) - GPIO.setup(CS_PIN, GPIO.OUT) - GPIO.setup(BUSY_PIN, GPIO.IN) - SPI.max_speed_hz = 2000000 - SPI.mode = 0b00 - return 0; - -### END OF FILE ### diff --git a/etc/examples and tests/photodisplaytest.py b/etc/examples and tests/photodisplaytest.py deleted file mode 100644 index ae150a2..0000000 --- a/etc/examples and tests/photodisplaytest.py +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/python -# -*- coding:utf-8 -*- - -#this script takes a file as an option and adds that file to the db - -import optparse -import traceback -import os, sys -import time -import uuid -import subprocess -import epd4in2 -import traceback -from PIL import Image,ImageDraw,ImageFont - -#generate unique file_name -unique = uuid.uuid4() -unique = str(unique) -jpgpath = 'photos/' + unique + '.jpg' -bmppath = 'photos/' + unique + '.bmp' - -#take photo -try: - result = subprocess.call(['raspistill', '-o', jpgpath]) - print (result) - -except: - print 'traceback.format_exc():\n%s' % traceback.format_exc() - exit() - -time.sleep(3) - -#convert -size = 400, 300 -im = Image.open(jpgpath) -print("opening...") -print (jpgpath) -im = im.rotate(180, Image.NEAREST, "expand=1") -im.thumbnail(size, Image.BICUBIC) -im = im.convert("1") -im.save(bmppath) -print("saving to...") -print (bmppath) - -#print! -try: - epd = epd4in2.EPD() - epd.init() - Himage2 = Image.new('1', (epd4in2.EPD_WIDTH, epd4in2.EPD_HEIGHT), 255) # 255: clear the frame - bmp = Image.open(bmppath) - Himage.paste(bmp) - epd.display(epd.getbuffer(Himage)) - time.sleep(2) - epd.sleep() - -except: - print 'traceback.format_exc():\n%s' % traceback.format_exc() - exit() diff --git a/etc/examples and tests/rainbow.py b/etc/examples and tests/rainbow.py deleted file mode 100644 index 8c1dc97..0000000 --- a/etc/examples and tests/rainbow.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/python -# -*- coding:utf-8 -*- - -import time -import buttonshim -print ("white") -buttonshim.set_pixel(0xFF, 0xFF, 0xFF) -time.sleep(3) -print ("blue") -buttonshim.set_pixel(0x00, 0x00, 0xff) -time.sleep(3) -print ("green") -buttonshim.set_pixel(0x00, 0xff, 0x00) -time.sleep(3) -print ("yellow?") -buttonshim.set_pixel(0xff, 0xff, 0x00) -time.sleep(3) -print ("red") -buttonshim.set_pixel(0xff, 0x00, 0x00) -time.sleep(3) diff --git a/etc/examples and tests/upload.bmp b/etc/examples and tests/upload.bmp deleted file mode 100644 index 845f1fa..0000000 Binary files a/etc/examples and tests/upload.bmp and /dev/null differ diff --git a/etc/examples and tests/wavesharedemo.py b/etc/examples and tests/wavesharedemo.py deleted file mode 100644 index 4195c3a..0000000 --- a/etc/examples and tests/wavesharedemo.py +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/python -# -*- coding:utf-8 -*- - -import epd4in2 -import time -from PIL import Image,ImageDraw,ImageFont -import traceback - -try: - epd = epd4in2.EPD() - epd.init() - epd.Clear(0xFF) - - # Drawing on the Horizontal image - Himage = Image.new('1', (epd4in2.EPD_WIDTH, epd4in2.EPD_HEIGHT), 255) # 255: clear the frame - # Drawing on the Vertical image - Limage = Image.new('1', (epd4in2.EPD_HEIGHT, epd4in2.EPD_WIDTH), 255) # 255: clear the frame - - # Horizontal - print "Drawing" - draw = ImageDraw.Draw(Himage) - font24 = ImageFont.truetype('/usr/share/fonts/truetype/wqy/wqy-microhei.ttc', 24) - draw.text((10, 0), 'hello world', font = font24, fill = 0) - draw.text((10, 20), '2.9inch e-Paper', font = font24, fill = 0) - draw.text((150, 0), u'微雪电子', font = font24, fill = 0) - draw.line((20, 50, 70, 100), fill = 0) - draw.line((70, 50, 20, 100), fill = 0) - draw.rectangle((20, 50, 70, 100), outline = 0) - draw.line((165, 50, 165, 100), fill = 0) - draw.line((140, 75, 190, 75), fill = 0) - draw.arc((140, 50, 190, 100), 0, 360, fill = 0) - draw.rectangle((80, 50, 130, 100), fill = 0) - draw.chord((200, 50, 250, 100), 0, 360, fill = 0) - epd.display(epd.getbuffer(Himage)) - time.sleep(2) - - # Vertical - draw = ImageDraw.Draw(Limage) - font18 = ImageFont.truetype('/usr/share/fonts/truetype/wqy/wqy-microhei.ttc', 18) - draw.text((2, 0), 'hello world', font = font18, fill = 0) - draw.text((2, 20), '2.9inch epd', font = font18, fill = 0) - draw.text((20, 50), u'微雪电子', font = font18, fill = 0) - draw.line((10, 90, 60, 140), fill = 0) - draw.line((60, 90, 10, 140), fill = 0) - draw.rectangle((10, 90, 60, 140), outline = 0) - draw.line((95, 90, 95, 140), fill = 0) - draw.line((70, 115, 120, 115), fill = 0) - draw.arc((70, 90, 120, 140), 0, 360, fill = 0) - draw.rectangle((10, 150, 60, 200), fill = 0) - draw.chord((70, 150, 120, 200), 0, 360, fill = 0) - epd.display(epd.getbuffer(Limage)) - time.sleep(2) - - print "read bmp file" - Himage = Image.open('4in2.bmp') - epd.display(epd.getbuffer(Himage)) - time.sleep(2) - - print "read bmp file on window" - Himage2 = Image.new('1', (epd4in2.EPD_WIDTH, epd4in2.EPD_HEIGHT), 255) # 255: clear the frame - bmp = Image.open('100x100.bmp') - Himage2.paste(bmp, (50,10)) - epd.display(epd.getbuffer(Himage2)) - time.sleep(2) - - epd.sleep() - -except: - print 'traceback.format_exc():\n%s' % traceback.format_exc() - exit() - diff --git a/etc/sleep.py b/etc/sleep.py deleted file mode 100644 index 7bf466c..0000000 --- a/etc/sleep.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/python -# -*- coding:utf-8 -*- - -#this is a way to manually sleep the display if the code crashed before the epd.sleep() command - -import epd4in2 -import traceback -import time -import signal - -#initialize display -try: - epd = epd4in2.EPD() - epd.init() - time.sleep(2) - epd.sleep() - print ("the display sleeps ZZZzzzz....") -except: - print 'traceback.format_exc():\n%s' % traceback.format_exc() - exit() diff --git a/etc/welcomehome.jpg b/etc/welcomehome.jpg deleted file mode 100644 index 1fcb16b..0000000 Binary files a/etc/welcomehome.jpg and /dev/null differ