From e5180e05eb687584a8dd6d5c6c459a5f5ade6ac7 Mon Sep 17 00:00:00 2001 From: Balthasar Reuter Date: Fri, 29 May 2015 00:21:12 +0200 Subject: [PATCH] Showing wait message --- photobooth.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/photobooth.py b/photobooth.py index 6592cde..2544b22 100755 --- a/photobooth.py +++ b/photobooth.py @@ -225,7 +225,7 @@ def take_picture(): display.show_message(str(3 - i)) display.apply() sleep(1) - # + # Show 'Cheese' display.clear() display.show_message("C H E E S E !") display.apply() @@ -237,6 +237,10 @@ def take_picture(): for x in range(4): # filenames[x] = camera.take_picture(images.get_next()) filenames[x] = camera.take_picture("/tmp/photobooth_%02d.jpg" % x) + # Show 'Wait' + display.clear() + display.show_message("Please wait! Processing...") + display.apply() # Assemble them outfile = images.get_next() assemble_pictures(filenames, outfile)