Search found 12 matches

by Jason Kim
Mon Apr 03, 2017 11:50 am
Forum: Other Boards
Topic: A few questions about micropython & Micro:bit
Replies: 1
Views: 2063

A few questions about micropython & Micro:bit

I know that micropython for Micro:bit consists of C99.
if so, Is the python code when I write to make run the Micro:bit translate to C??
What if I want to redefine the micropython syntax for a Micro:bit? :ugeek:
by Jason Kim
Mon Apr 03, 2017 11:50 am
Forum: General Discussion and Questions
Topic: A few questions about micropython & Micro:bit
Replies: 0
Views: 1541

A few questions about micropython & Micro:bit

I know that micropython for Micro:bit consists of C99.
if so, Is the python code when I write to make run the Micro:bit translate to C??
What if I want to redefine the micropython syntax for a Micro:bit?
by Jason Kim
Mon Jan 16, 2017 10:07 am
Forum: micro:bit boards
Topic: What is the encoding scheme used by Micro:bit(micropython)
Replies: 0
Views: 1748

What is the encoding scheme used by Micro:bit(micropython)

What is the encoding scheme used by Micro:bit(micropython)
I am developing a module that supports multi-language output in Micro:bit.
During the tests I found that the encoding methods used by Microsoft were not utf-8.
How can I support utf-8??
by Jason Kim
Mon Jan 16, 2017 10:06 am
Forum: micro:bit boards
Topic: What is the encoding scheme used by Micro:bit(micropython)
Replies: 1
Views: 2438

What is the encoding scheme used by Micro:bit(micropython)

What is the encoding scheme used by Micro:bit(micropython)
I am developing a module that supports multi-language output in Micro:bit.
During the tests I found that the encoding methods used by Microsoft were not utf-8.
How can I support utf-8??
by Jason Kim
Thu Jan 12, 2017 10:25 am
Forum: micro:bit boards
Topic: How to Micro:bit library development?
Replies: 0
Views: 1937

How to Micro:bit library development?

I want to develop a new Micro:bit library in MicroPython. (like Image, display.... etc) Typically, python's Library is can developed using python and so easy. but I understand that MicroPython was developed using c++. So, MicroPython is a very complex structure. Therefore, I want to develop a new mo...
by Jason Kim
Wed Jan 11, 2017 11:31 am
Forum: micro:bit boards
Topic: What is the difference between microbit_display_scroll and microbit_display_scroll_func? in microbitdisplay.cpp
Replies: 0
Views: 1708

What is the difference between microbit_display_scroll and microbit_display_scroll_func? in microbitdisplay.cpp

What is the difference between microbit_display_scroll and microbit_display_scroll_func? in microbitdisplay.cpp If I gave input a [scroll (" aaa ")], How does it print in micro:bit? microbit_display_animate() -> ???? What functions do micro:bit calls? Moderator note: I moved this to the microbit for...
by Jason Kim
Tue Jan 03, 2017 4:05 pm
Forum: micro:bit boards
Topic: Is it possible for micro:bit to support multiple languages?
Replies: 12
Views: 10474

Re: Is it possible for micro:bit to support multiple languages?

@deshipu Thank you for your response. Thank you for the code you upload for me. This code will help me a lot. I've just tried a test about your code. led output is one by one and speed is slow but I will try to fix it! :) window = Image(5, 5) The window is the first object I have ever seen. Even if ...
by Jason Kim
Tue Jan 03, 2017 12:12 pm
Forum: General Discussion and Questions
Topic: new Image Scroll problem
Replies: 0
Views: 1548

new Image Scroll problem

I am looking for ways to create and scroll a new image. And I wrote the this code. But there is a problem. from microbit import * image = Image( "090900:" "090909:" "090909:" "090909:" "090909:") def my_scroll(image) : for x in range(image.width()) : yield image.crop(x, 0, 5, 5) <- understand! displ...
by Jason Kim
Tue Jan 03, 2017 12:06 pm
Forum: micro:bit boards
Topic: Is it possible for micro:bit to support multiple languages?
Replies: 12
Views: 10474

Re: Is it possible for micro:bit to support multiple languages?

@deshipu Thank you for reply. I'm okay because I am learning a lot of thing about Micro:bit by you! thank you a lot! so, Is there any other way to solve this problem? This is very basic and important to what I'm trying to do. If this problem is resolved, it will be modified to support all Unicode. I...
by Jason Kim
Tue Jan 03, 2017 5:38 am
Forum: micro:bit boards
Topic: Is it possible for micro:bit to support multiple languages?
Replies: 12
Views: 10474

Re: Is it possible for micro:bit to support multiple languages?

@deshipu Thank you for your response. Thank you for the code you upload for me. and There are question about the code. I changed the code slightly. so i tried again. from microbit import * image = Image( "090900:" "090909:" "090909:" "090909:" "090909:") def my_scroll(image) : for x in range(image.w...