Re: Screen Control Fullscreen ON/OFF

2011-12-15 Thread Grant Edwards
On 2011-12-15, Nizamov Shawkat wrote: >>> >>> I would like to make fullscreen white and fullscreen black using >>> Python on Linux. With in the specs of the LCD, I want to be able to >>> display fullscreen white and black approximately at 30Hz. Frequency >>> (on/off per second) will be input manua

Re: Screen Control Fullscreen ON/OFF

2011-12-15 Thread Yigit Turgut
On Dec 15, 4:19 pm, Ulrich Eckhardt wrote: > Am 15.12.2011 12:12, schrieb yeet: > > > My LCD has 2ms respond time thus it can handle a maximum of 50Hz ON/ > > OFF (white/black) thus seems to fit my 1-40Hz range. > > You might want to ask Santa for a new calculator, as in my book a > response time

Re: Screen Control Fullscreen ON/OFF

2011-12-15 Thread Ulrich Eckhardt
Am 15.12.2011 12:12, schrieb yeet: My LCD has 2ms respond time thus it can handle a maximum of 50Hz ON/ OFF (white/black) thus seems to fit my 1-40Hz range. You might want to ask Santa for a new calculator, as in my book a response time of 2ms would be enough for 250Hz (period = 2 * 2ms). Re

Re: Screen Control Fullscreen ON/OFF

2011-12-15 Thread 88888 Dihedral
On Thursday, December 15, 2011 6:59:04 PM UTC+8, yeet wrote: > Hi all, > > I would like to make fullscreen white and fullscreen black using > Python on Linux. With in the specs of the LCD, I want to be able to > display fullscreen white and black approximately at 30Hz. Frequency > (on/off per seco

Re: Screen Control Fullscreen ON/OFF

2011-12-15 Thread Nizamov Shawkat
> It depends on whether you want sync to vblank or not. If not, that is > pretty easy - use sleep() or something similar. If you have to use > sync (screen is always either black or white, never partly black and > white) then it is much much more difficult. Actually I do not know of > any way to sy

Re: Screen Control Fullscreen ON/OFF

2011-12-15 Thread Nizamov Shawkat
>> >> I would like to make fullscreen white and fullscreen black using >> Python on Linux. With in the specs of the LCD, I want to be able to >> display fullscreen white and black approximately at 30Hz. Frequency >> (on/off per second) will be input manually which is between 1-40Hz. >> Any idea whe

Re: Screen Control Fullscreen ON/OFF

2011-12-15 Thread yeet
On Dec 15, 12:59 pm, yeet wrote: > Hi all, > > I would like to make fullscreen white and fullscreen black using > Python on Linux. With in the specs of the LCD, I want to be able to > display fullscreen white and black approximately at 30Hz. Frequency > (on/off per second) will be input manually w

Screen Control Fullscreen ON/OFF

2011-12-15 Thread yeet
Hi all, I would like to make fullscreen white and fullscreen black using Python on Linux. With in the specs of the LCD, I want to be able to display fullscreen white and black approximately at 30Hz. Frequency (on/off per second) will be input manually which is between 1-40Hz. Any idea where to sta