Operácie

Micro:bit: Rozdiel medzi revíziami

Z SensorWiki

Riadok 31: Riadok 31:
 
|-
 
|-
 
| style="background: #ffffcc" |
 
| style="background: #ffffcc" |
 +
'''Javascript'''
 
<source lang="javascript">
 
<source lang="javascript">
  
Riadok 39: Riadok 40:
  
 
|  
 
|  
 +
'''Python'''
 
<source lang="python">
 
<source lang="python">
  
Riadok 50: Riadok 52:
  
 
|  
 
|  
 +
'''C++'''
 
<source lang="c">
 
<source lang="c">
 
#include "MicroBit.h"
 
#include "MicroBit.h"

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

Hlavná stránka:

Set of links:



Deep into details:


Skusime urobit prvy program v rozlicnych jazykoch:

Tuto bude obrazok v blocks a pod nim tri rozlicne stlpecky, ani nemusia byt collapsible:

Javascript

basic.showString("Hello!")
basic.showIcon(IconNames.Heart)

Python

from microbit import *

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

C++

#include "MicroBit.h"

MicroBit uBit;

int main()
{
    uBit.init();

    uBit.display.scroll("Ahoj :)");

    release_fiber();
}
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();
}