MicroPython, a few years on
kickstarter.com
MicroPython, a few years on
1–10 of 32 posts
Re: MicroPython, a few years on
#2Re: MicroPython, a few years on
#3Can micropython be used to make Android apps?
Re: MicroPython, a few years on
#4Can micropython be used to make Android apps?
Re: MicroPython, a few years on
#5Can micropython be used to make Android apps?
first, lets be clear about Micropython, the software versus PyBoard, the reference hardware. Micropython on a Pyboard is runnunig on bare metal with no OS. Micropython is very portable, and builds nicely on Linux, yielding a nice small-footprint Python. I am not aware of a build for Android, but it seems like it should be straightforward. Everything about Micropython is tuned for low memory footprint, so it might be…
So that would seem to make actual Python a better candidate for Android porting. I found http://qpython.com/ which seems interesting, but the site didn't look finished.
Re: MicroPython, a few years on
#6Can micropython be used to make Android apps?
Re: MicroPython, a few years on
#7Earlier quoted context omitted.
first, lets be clear about Micropython, the software versus PyBoard, the reference hardware. Micropython on a Pyboard is runnunig on bare metal with no OS. Micropython is very portable, and builds nicely on Linux, yielding a nice small-footprint Python. I am not aware of a build for Android, but it seems like it should be straightforward. Everything about Micropython is tuned for low memory footprint, so it might be…
But Android is based on Linux, i.e. it wouldn't allow MicroPython to run directly on the bare metal. So that would seem to make actual Python a better candidate for Android porting. I found http://qpython.com/ which seems interesting, but the site didn't look finished.
Re: MicroPython, a few years on
#8Earlier quoted context omitted.
first, lets be clear about Micropython, the software versus PyBoard, the reference hardware. Micropython on a Pyboard is runnunig on bare metal with no OS. Micropython is very portable, and builds nicely on Linux, yielding a nice small-footprint Python. I am not aware of a build for Android, but it seems like it should be straightforward. Everything about Micropython is tuned for low memory footprint, so it might be…
But Android is based on Linux, i.e. it wouldn't allow MicroPython to run directly on the bare metal. So that would seem to make actual Python a better candidate for Android porting. I found http://qpython.com/ which seems interesting, but the site didn't look finished.
Re: MicroPython, a few years on
#9Can micropython be used to make Android apps?
Re: MicroPython, a few years on
#10Can micropython be used to make Android apps?
You'd be better off trying to to use Jython (which compiles Python to JVM bytecode) because that would give you interop with Android's Java libraries.
One option for interacting with java from python is to use tools like pyjnius (http://pyjnius.readthedocs.org/en/latest/) - this is what e.g. Kivy does to get system information like screen metrics.