Yes it should as the Python extension "positioning" is agnostic to the location provider. It offers what ever means for obtaining location fix is available by using the "Location Acquisition API". In...
Type: Posts; User: otsov; Keyword(s):
Yes it should as the Python extension "positioning" is agnostic to the location provider. It offers what ever means for obtaining location fix is available by using the "Location Acquisition API". In...
There shouldn't be a need to add any sleeps to call answering, you might want to send a bug report on this to SourceForge (if there is a need for the sleeps, this should be at least documented to the...
Both are possible scenarious independent of the bearer from where the script comes from.
(As a sidenote, the first test case for the "inbox" extension executed scripts received via SMS - it is...
Please have a look at "[PyS60]src\PyS60_3rdEd_README.txt", from there:
""
Useful information especially about the platform warnings can be
found from the emulator log file, located usually under...
It returns raw data, just write it to disk:
j=camera.take_photo('JPEG_Exif', (2592, 1944))
file = open("c:\\test4.jpg",'w')
file.write(j)
file.close()
Nice, it seems that the N95 8GB supports the "AccSensor" out-of-the-box - so the standard "sensor" extension can be used with the device to get acceleration data (I don't have a N95 8GB device to...
Please have a look at this thread:
http://discussion.forum.nokia.com/forum/showthread.php?t=118149
Switching to landscape mode prior the "camera" import should expose higher resolutions in the...
Thank you for noticing this one.
Scalable icons in "Listbox" have been supported from the first PyS60 SDK2.8 releases onwards (this is my recollection). The safeguard you found was indeed...
This is not supported yet, you might want to post a feature request to SourceForge for this (patches for this would be welcomed also should you be interested to contribute).
Currently using:
>>> import sysinfo
>>> sysinfo.sw_version()
u'V 21.0.001 16-10-07 RM-159 N95(c)NMP'
>>>
In N93 for the video recording to work you'll need a certificate with "MultimediaDD" capability - use this with your Python application and the Nokia signed interpreter core. This is at least what...
Using N95 and:
- PythonForS60_1_4_1_3rdEd.SIS
- PythonScriptShell_1_4_1_3rdEd.sis
downloaded from the SourceForge site.
No signing done for either of the packages - this works (output...
There seems to be an issue with the N93 firmware - video recording will not work in this device without the "MultimediaDD" capability assigned to your Python application. Please see these links:
...
This works at least in N95:
import appuifw
import camera
import e32
def finder_cb(im):
appuifw.app.body.blit(im)
I'll check this later (I don't have an N95 near right now), but some earlier findings on this issue I had written down:
""The image sizes works perfectly when you first change the orientation (the...
Have a look at "Py2SIS_3rdED_v0_1_README.txt" under folder "\src\py2sis", from there:
* Invoke py2sis with argument --autostart to enable the start-up of your
script during device boot....
Have a look at http://sourceforge.net/tracker/index.php?func=detail&aid=1815670&group_id=154155&atid=790646
Thanks for noticing this one.
You might want to tune the "cam_take_photo" function in "cameramodule.cpp" - the reinitialization of the camera object is partly the reason for the slowness.
If I remember correctly the reason for...
The current documentation is included in the "pys60-1.4.0_src.zip"-package - download it from the SourceForge and see the folder "src\Doc". The makefile should support at least HTML format...
This is possible and the VRex example does just that.
You need to power-up your "CCamera" instance before the use of "CVideoRecorderUtility" (i.e. recording). This linkage is not documented in...
The a) is possible already, it is distributed as Nokia 5500 sensor plugin though it works in N95 also. The separate sensor API is in my opinion a good idea.
The b) is really needed and the...
There is a sensor in N95 which detects which side of the device is up - this is used for orientation of the pictures in the native camera application. There is no sensor extension yet in the standard...
You stumbled into a bug - Please report this to the SourceForge site of PyS60.
Based on this:
http://discussion.forum.nokia.com/forum/archive/index.php/t-21240.html
Adding these magical...
Here is my understanding of the reason:
The native DBMS system in Symbian supports two modes for operating with databases 1) client side and 2) client-server databases. In the first case the...
This sounds like a platform bug - you might want to report this as a bug in SourceForge. If possible, please include a minimal (I think this is only a bug in the audio sub-system) test script and...