Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
d0a85fd0d2 | |||
d8167ae9ff | |||
8040c1265a | |||
c5b86dea72 | |||
4ad347214d | |||
d47ea29d1a | |||
738acc328f |
3
.github/workflows/testghpkgs.yml
vendored
3
.github/workflows/testghpkgs.yml
vendored
@ -1,8 +1,7 @@
|
||||
name: pxt-testghpkgs
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 * * 6'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
|
||||
|
||||
pxt-calliope is a [Microsoft Programming Experience Toolkit (PXT)](https://github.com/Microsoft/pxt) target that allows you to program a [BBC micro:bit](https://microbit.org/).
|
||||
pxt-calliope is a [Microsoft Programming Experience Toolkit (PXT)](https://github.com/Microsoft/pxt) target that allows you to program a [Calliope mini](https://calliope.cc/en).
|
||||
|
||||
|
||||
* [Try it live](https://makecode.calliope.cc/)
|
||||
|
@ -1,10 +1,10 @@
|
||||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "..\\pxt"
|
||||
"path": "../pxt"
|
||||
},
|
||||
{
|
||||
"path": "..\\pxt-common-packages"
|
||||
"path": "../pxt-common-packages"
|
||||
},
|
||||
{
|
||||
"path": "."
|
||||
|
12
docs/mini.pxt.io.md
Normal file
12
docs/mini.pxt.io.md
Normal file
@ -0,0 +1,12 @@
|
||||

|
||||
|
||||
|
||||
# MAKECODE UPDATE
|
||||
|
||||
## MakeCode Support nur noch eingeschränkt.
|
||||
|
||||
Der MakeCode Support für die erste Version des Calliope mini (IT-Gipfel) wird nun eingeschränkt.
|
||||
|
||||
Es kann zwar weiterhin die Editorversion [https://MakeCode.calliope.cc](https://MakeCode.calliope.cc) genutzt werden, allerdings ist diese nicht mehr komplett kompatibel zum Calliope mini der ersten Generation.
|
||||
|
||||
Eine Alternative stellt das [Open Roberta Lab](https://lab.open-roberta.org/) dar.
|
@ -22,7 +22,7 @@ Melodies are a sequence of notes, each played for some small amount time, one af
|
||||
music.beginMelody(['g4:1', 'c5', 'e', 'g:2', 'e:1', 'g:3'], MelodyOptions.Once)
|
||||
```
|
||||
|
||||
Melodies are played either in the _foreground_ or _background_. This allows more than one melody to be active at once. If a melody is set to play in the background, it can be interrupeted, or paused, temporarily while a melody set for the foreground is played. If the foreground melody is not set to play ``forever``, then the background melody resumes when the foreground melody is finished.
|
||||
Melodies are played either in the _foreground_ or _background_. This allows more than one melody to be active at once. If a melody is set to play in the background, it can be interrupted, or paused, temporarily while a melody set for the foreground is played. If the foreground melody is not set to play ``forever``, then the background melody resumes when the foreground melody is finished.
|
||||
|
||||
You can set options for how you want the melody to play. You can ask that the melody plays just one time, ``once``, or have it keep repeating, ``forever``. With these options the melody will play in the foreground either once or continue to repeat. Of course, if you set ``forever``, any melody that was started in background will never play unless you [stop](/reference/music/stop-melody) the foreground melody. To make a background melody, set the option to ``once in background`` or ``forever in background``.
|
||||
|
||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "pxt-calliopemini",
|
||||
"version": "3.0.35",
|
||||
"version": "3.0.36",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "pxt-calliopemini",
|
||||
"version": "3.0.35",
|
||||
"version": "3.0.36",
|
||||
"description": "calliope mini target for Microsoft MakeCode (PXT)",
|
||||
"keywords": [
|
||||
"JavaScript",
|
||||
|
@ -32,7 +32,6 @@
|
||||
"deployDrives": "MINI",
|
||||
"driveName": "MINI",
|
||||
"hexMimeType": "application/x-microbit-hex",
|
||||
"moveHexEof": true,
|
||||
"openocdScript": "source [find interface/cmsis-dap.cfg]; source [find target/nrf51.cfg]",
|
||||
"flashUsableEnd": 242688,
|
||||
"flashEnd": 242688,
|
||||
|
@ -143,6 +143,7 @@
|
||||
"MKleinSB/pxt-mpr121",
|
||||
"MKleinSB/pxt-gatorlog-calliope",
|
||||
"MKleinSB/pxt-callibot",
|
||||
"MKleinSB/pxt-serialmp3",
|
||||
"dl1ekm/pxt-calliope-ADS1x15",
|
||||
"dl1ekm/pxt-calliope-PCF85063-RTC"
|
||||
]
|
||||
|
Reference in New Issue
Block a user