How to use python to make a linux mobile system or phone? (By using micropython project) #12966
Replies: 6 comments 4 replies
-
Question: You Want port micro-python project to linux/pc mobile app ? if yes, then for mobile apps written in Python (not micro python) You can use: Kivy or PyMob ( Cross-platforms Python Framework)) if You want use pure micro-python then should read about [TTGO-T-watch-2020-Micropython-OS |
Beta Was this translation helpful? Give feedback.
-
I don't only want to create an apk or a mobile system for old devices I want to create a MIT based ecosystem I see the iPhone and Android system is getting more and more strict and unopened For example, apple store and google play or new android system is trying to limit developers to use powerful permissions (For example, you can't publish another app store app in old store app) And another reason is, android source code is around 60GB, almost about to explode. We need to cut it down to 50MB or less. (So anyone can do modification) And another reason is the mobile hardware manufacturer is also not doing right thing, they encrypting everything about their hardware, for example you can't directly use camera, microphone, screen, NFC, GPS in your mobile device, you have to use manufacturer pre_compiled binary drivers. Which makes develop new system on old phone harder and harder. (If you have a 100MB mobile system, 80MB might be the drive binarys, it limits new system porting for different devices) If we could create a new mobile phone hardware standards by using micropython project, everything would be easier. |
Beta Was this translation helpful? Give feedback.
-
Another thing I want to mention is: If amd64 chip only needs 1.5 voltage to run, why those people use arm64 for mobile CPU? I'm pretty sure everything will work OK with a amd64 chip. |
Beta Was this translation helpful? Give feedback.
-
I have an idea of how to make a mobile desktop envirnoment for linuxFirst, we don't need those application in our platform to do anything but give us images when they think the user interface should get updated. Then, what we need to do is send the keyboard, mouse, touchscreen, resolution to that application that is currently running at the front-end. For each time, there would only have one single app is running at the front-end, I mean they can't send you image/graphic data at the background. And for the desktop or launcher we have, there would always have 3 buttons at the bottom: recent_apps, home, back. And what we will do as a desktop envirnoment is to send the mixed graphic data directly to the FTF SPI LCD Screen. In this case, we don't need any modern desktop envirnoment that is normally greater than 1GB, but a simple python script that is smaller than 500KB. ProtocolFor launcher
For each app
|
Beta Was this translation helpful? Give feedback.
-
About how to make the minimum web broswer:According to my experience, the core html component is:
When user input something in input tag, we save it in current page global dict, the key is input_id, then when user click any link at that page, we send that dict as url parameters along with that link. When front-end browser show the content, it automatically do a scale based on the longest line. JWT as an authentication method could always be in the The whole thing is similar to wap web page. #html #idea #yingshaoxo |
Beta Was this translation helpful? Give feedback.
-
About how to make the minimal email system (message board system):Create a web page, the upper 30% is the input box + send button, and the lower 70% is the message list. Send a message through a GET request and obtain the message list. The server needs to remove duplicate messages. #email #idea #yingshaoxo |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
How to make a mobile phone and mobile phone system based on MIT license projects?
#mobile #os #MIT #python #yingshaoxo
I tried to ask this question in https://unix.stackexchange.com, but it got deleted for unknown reason:
https://yingshaoxo.xyz/pictures/stackexchange/index.html
All I wish to see is someone make a useable mobile phone or system by using micropython, is that wrong?
Beta Was this translation helpful? Give feedback.
All reactions