-
Issues with 1.1.5
Hi,
A few things I ran into with my 6600:
1. Accessing the camera does not work with the 'fast' version of the Python runtime. Details fail me because I deinstalled the fast version and didn't write down the error. I remember it was in camera.py line 11 where it tries to import something like _camera.pyd (which doesn't exist).
2. The default (and only) camera exposure mode in the normal Python runtime still is 'night'.
3. selection_lists do not cover the complete screen. This is notable when running the application in 'large' or 'full' mode.
More later.
I would encourage you to keep developing the 'fast' version because the speed increase is incredible! Keep up the good work.
Cheers,
Berco
-
When we can test new version 1.1.6 ?
And when we can create commercial application with the final 1.2.0 ?
-
3. is still not solved in 1.1.6
-
Re: Issues with 1.1.5
[QUOTE][i]Originally posted by bercobeute [/i]
[B]
2. The default (and only) camera exposure mode in the normal Python runtime still is 'night'.
3. selection_lists do not cover the complete screen. This is notable when running the application in 'large' or 'full' mode. [/B][/QUOTE]
2. Could you clarify this?
3. This is a defect, reported as #0225. Notice that this defect also shows with "multi_selection_list". Thanks for reporting this one!
-
2. On a 6600 with 1.1.5, 1.1.6 and 1.1.6_fast this:
[code]
exposures = camera.exposure_modes()
[/code]
only returns the exposure mode 'night'. Daylight pictures are way to bright.
-
[QUOTE][i]Originally posted by bercobeute [/i]
[B]2. On a 6600 with 1.1.5, 1.1.6 and 1.1.6_fast this:
[code]
exposures = camera.exposure_modes()
[/code]
only returns the exposure mode 'night'. Daylight pictures are way to bright. [/B][/QUOTE]
The automatically supported mode 'auto' is not included in the returned list. The default parameters for "take_photo" nevertheless include the 'auto' parameter for exposure which you can also use in your code despite the fact that the accessor does not return it.
The list should (probably) return also 'auto', this concerns also other accessors in "camera". Filed as #0226, we need to think about whether the 'auto' should be included in the list or should it be e.g. a module level constant. Thanks for noticing also this one!
-
Re: Issues with 1.1.5
...but on the 6600 even explicitely using the 'auto' exposure mode gives way to bright images, making it impossible to take outdoor pictures with the 6600.
[code]
camera.take_photo(exposure=self.exposure)
[/code]