Compare commits

...

7 Commits
v3.0.35 ... v3

Author SHA1 Message Date
d0a85fd0d2 only run on demand 2020-11-30 08:45:00 +01:00
d8167ae9ff fix worksapce 2020-11-30 08:44:17 +01:00
8040c1265a microbit? -> calliope (#129) 2020-11-30 08:42:35 +01:00
c5b86dea72 3.0.36 2020-10-29 01:27:47 -07:00
4ad347214d begin-melody.md: fixed typo (#127) 2020-10-29 01:27:31 -07:00
d47ea29d1a Updates (#125)
* add pxt-serialmp3 to preferredRepos

* remove "moveHexEof"

* Decrease UART Buff size to default

* Restore UART Buff size

Co-authored-by: Juri <gitkraken@juriwolf.de>
2020-10-29 01:26:52 -07:00
738acc328f Page for mini.pxt.io shutdown (#124)
Co-authored-by: Juri <gitkraken@juriwolf.de>
2020-09-23 07:23:56 -07:00
9 changed files with 20 additions and 9 deletions

View File

@ -1,8 +1,7 @@
name: pxt-testghpkgs
on:
schedule:
- cron: '0 0 * * 6'
workflow_dispatch:
jobs:
build:

View File

@ -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/)

View File

@ -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
View File

@ -0,0 +1,12 @@
![](/static/mb/device/calliope_website.jpg)
# 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.

View File

@ -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
View File

@ -1,6 +1,6 @@
{
"name": "pxt-calliopemini",
"version": "3.0.35",
"version": "3.0.36",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -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",

View File

@ -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,

View File

@ -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"
]