Operácie

Micro:bit: Rozdiel medzi revíziami

Z SensorWiki

Riadok 43: Riadok 43:
 
</div>
 
</div>
  
 +
<div class="toccolours mw-collapsible mw-collapsed">'''Python'''
 +
Naprogramujte program pre
 +
<div class="mw-collapsible-content">
 +
<source lang="c">
 +
#include "MicroBit.h"
  
 +
MicroBit uBit;
 +
 +
int main()
 +
{
 +
    // Initialise the micro:bit runtime.
 +
    uBit.init();
 +
 +
    // Insert your code here!
 +
    uBit.display.scroll("Ahoj :)");
 +
 +
    // If main exits, there may still be other fibers running or registered event handlers etc.
 +
    // Simply release this fiber, which will mean we enter the scheduler. Worse case, we then
 +
    // sit in the idle task forever, in a power efficient sleep.
 +
    release_fiber();
 +
}
 +
</source>
 +
 +
</div>
 +
</div>
  
  
 
[[Category: Základy počítačov]] [[Category: micro:bit]]
 
[[Category: Základy počítačov]] [[Category: micro:bit]]

Verzia zo dňa a času 22:15, 14. január 2018

Hlavná stránka:

Set of links:



Deep into details:


Skusime urobit prvy program v rozlicnych jazykoch:

Python

Naprogramujte program pre

# Add your Python code here. E.g.
from microbit import *


while True:
    display.scroll('Hello, World!')
    display.show(Image.HEART)
    sleep(2000)
Python

Naprogramujte program pre

#include "MicroBit.h"

MicroBit uBit;

int main()
{
    // Initialise the micro:bit runtime.
    uBit.init();

    // Insert your code here!
    uBit.display.scroll("Ahoj :)");

    // If main exits, there may still be other fibers running or registered event handlers etc.
    // Simply release this fiber, which will mean we enter the scheduler. Worse case, we then
    // sit in the idle task forever, in a power efficient sleep.
    release_fiber();
}