Active Topics

 



Notices


Reply
Thread Tools
lcuk's Avatar
Posts: 1,635 | Thanked: 1,816 times | Joined on Apr 2008 @ Manchester, England
#481
ciroip (and others)

I stumbled upon a great site last night offering some amazing clockface designs

http://www.darkroastedblend.com/2009...d-watches.html

some are most interesting and certainly fodder for ideas
__________________
liqbase sketching the future.
like what i say? hit the Thanks, thanks!
twitter.com/lcuk
 

The Following 2 Users Say Thank You to lcuk For This Useful Post:
ciroip's Avatar
Posts: 334 | Thanked: 366 times | Joined on Nov 2008 @ Italy
#482
Originally Posted by jolouis View Post
Code:
# flipclock -f

/usr/lib/python2.5/site-packages/flipclock/flipclock.py:4: RuntimeWarning: import cdrom: No module named cdrom
  import pygame
/usr/lib/python2.5/site-packages/flipclock/flipclock.py:4: RuntimeWarning: import joystick: No module named joystick
  import pygame
(Hmmm I really have to clean up some of those pygame errors and things... is that just my old install of pygame, or do those errors appear for others too?).
I always received those pygame's errors, the porting was probably never really completed (probably don't having the access to the hardware accelerations demotivated a bit the developers). I tried to strip down a bit the pygame lib but other projects take over.

@Lcuk: lol, good site and yes, the steampunk, the clockbomb and the goggle clock versions are already in the project drawer but there are another couple of cool idea there
__________________
I can't do it. No one can help.
[SIGPIC][/SIGPIC]

Flip Alarm Clock - 3DMania Theme - Synesthesia - Deluxepain
http://ciroip.blogspot.com/
http://twitter.com/ciroippolito
 

The Following User Says Thank You to ciroip For This Useful Post:
Posts: 4,556 | Thanked: 1,624 times | Joined on Dec 2007
#483
I'm noticing an interesting bug. It seems alarms won't show in the main interface (the one with the clock) but they'll still fire if turned on.

I noticed this with the last version and an upgrade didn't fix it.
__________________
Originally Posted by ysss View Post
They're maemo and MeeGo...

"Meamo!" sounds like what Zorro would say to catherine zeta jones... after she slaps him for looking at her dirtily...
 
BrentDC's Avatar
Posts: 903 | Thanked: 632 times | Joined on Apr 2008
#484
Never have used pygame, but a simple statement l like:

Code:
try:
   import pygame
except RuntimeWarning:
   pass
should at least kill the traceback.

Edit: I just tried that and it doesn't work (that'll teach me to post code before testing it! ).
__________________
-Brent

Author of TouchSearch -- web searching software for Maemo 5.

Mobile Device lineage: Palm Z22 -> Palm TX -> Nokia N800 -> Nokia N900

Last edited by BrentDC; 2009-05-03 at 16:43.
 
Posts: 631 | Thanked: 837 times | Joined on May 2007 @ Milton, Ontario, Canada
#485
Originally Posted by Laughing Man View Post
I'm noticing an interesting bug. It seems alarms won't show in the main interface (the one with the clock) but they'll still fire if turned on.

I noticed this with the last version and an upgrade didn't fix it.
Alarms won't show as in the count-down area is blank, or? the AlarmSet area is empty? or it just shows the wrong info?

Once I get the modularity and code cleanup done, then the new features and graphics will be next, but I want to try and spend a bit of time figuring out a way to make the clock at least somewhat easily "skinnable" so that users will get to choose which one of Ciro's Uber Crazy clock designs they want, rather than just using which ever one we (the devs) impose at will ;o)

Nice try Brent, unfortunately it looks like it is a problem with the compiled pygame main module (it points to the CDRom and Joystick modules that were never ported to Maemo since the hardware didn't have support for them); it's not a big deal since this is a GUI app anyways, and maybe one day we'll find a way to clean it up...

Last edited by jolouis; 2009-05-04 at 15:23.
 
Posts: 4,556 | Thanked: 1,624 times | Joined on Dec 2007
#486
The count-down area is blank.
__________________
Originally Posted by ysss View Post
They're maemo and MeeGo...

"Meamo!" sounds like what Zorro would say to catherine zeta jones... after she slaps him for looking at her dirtily...
 
BrentDC's Avatar
Posts: 903 | Thanked: 632 times | Joined on Apr 2008
#487
Determined to kill the error, I just tried placing two files in /usr/lib/python2.5/site-packages/pygame/; one named "cdrom.py" the other "joystick.py". I just put "pass" in each file, and....drum roll.... that seems to work fine.

Sloppy, kludgy, horrible, yes, I know, but a solution nonetheless
__________________
-Brent

Author of TouchSearch -- web searching software for Maemo 5.

Mobile Device lineage: Palm Z22 -> Palm TX -> Nokia N800 -> Nokia N900
 

The Following User Says Thank You to BrentDC For This Useful Post:
Posts: 631 | Thanked: 837 times | Joined on May 2007 @ Milton, Ontario, Canada
#488
Originally Posted by Laughing Man View Post
The count-down area is blank.
I was working on something completely unrelated to this for the new version of the clock (when it gets done you guys are going to love it, some big changes coming!) when I noticed the same problem! Turns out I forgot a + sign on one line of code...

Try opening up ci_alarmNew.py, go to line 344 where it currently reads:
Code:
			if (mins < 10):
				countdownStr = "0"
			countdownStr = countdownStr + str(mins)
And update it to be:
Code:
			if (mins < 10):
				countdownStr = countdownStr + "0"
			countdownStr = countdownStr + str(mins)
That should fix the countdown problem (worked for mine at least)...
 
Posts: 4,556 | Thanked: 1,624 times | Joined on Dec 2007
#489
Hmm and oddly the alarms do not go off reliably. (whatever ones I set in flipclock). The regular ones I have still go off.
__________________
Originally Posted by ysss View Post
They're maemo and MeeGo...

"Meamo!" sounds like what Zorro would say to catherine zeta jones... after she slaps him for looking at her dirtily...

Last edited by Laughing Man; 2009-05-12 at 03:13.
 
Posts: 631 | Thanked: 837 times | Joined on May 2007 @ Milton, Ontario, Canada
#490
"alarms do not go off reliably" as in they don't play? The clock doesn't auto-launch? Are you using the same sound file all the time, or?

If it's the "clock doesn't autolaunch/do anything at alarm time" then you can always fall back on Flip's internal alarms instead of alarmD;
Make sure you have all alarms in Flip TURNED OFF, then just edit the config file (/home/user/.flipclock) and look for the section that says "useAlarmD=1"; change that to 0, save, and you should be all set. Note that this approach will no longer cause auto-launches/etc and means you'll need to have the app running in order to get alarms, but it should at least be 100% consistent.
 
Reply

Tags
clock, flip clock


 
Forum Jump


All times are GMT. The time now is 14:16.