Skip to content

Commit

Permalink
Auto-initialized.
Browse files Browse the repository at this point in the history
  • Loading branch information
MKleinSB committed Jan 26, 2019
1 parent 09f57ba commit f194c19
Show file tree
Hide file tree
Showing 8 changed files with 90 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# Initial
built
node_modules
yotta_modules
yotta_targets
pxt_modules
*.db
*.tgz
.header.json
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: node_js
node_js:
- "8.9.4"
script:
- "npm install -g pxt"
- "pxt target microbit"
- "pxt install"
- "pxt build"
sudo: false
cache:
directories:
- npm_modules
- pxt_modules
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
all: deploy

build:
pxt build

deploy:
pxt deploy

test:
pxt test
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# pxt-makerbit-mp3-calliope



## TODO

- [ ] Add a reference for your blocks here
- [ ] Add "icon.png" image (300x200) in the root folder
- [ ] Add "- beta" to the GitHub project description if you are still iterating it.
- [ ] Turn on your automated build on https://travis-ci.org
- [ ] Use "pxt bump" to create a tagged release on GitHub
- [ ] Get your package reviewed and approved https://makecode.microbit.org/packages/approval

Read more at https://makecode.microbit.org/packages/build-your-own

## License



## Supported targets

* for PXT/microbit
(The metadata above is needed for package search.)

7 changes: 7 additions & 0 deletions main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
basic.showLeds(`
. . . . .
. # . # .
. . . . .
# . . . #
. # # # .
`);
18 changes: 18 additions & 0 deletions pxt.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "pxt-makerbit-mp3-calliope",
"version": "0.0.0",
"description": "",
"dependencies": {
"core": "*",
"radio": "*"
},
"files": [
"README.md",
"main.ts"
],
"testFiles": [
"test.ts"
],
"public": false,
"additionalFilePaths": []
}
1 change: 1 addition & 0 deletions test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// tests go here; this will not be compiled when this package is used as a library
9 changes: 9 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"compilerOptions": {
"target": "es5",
"noImplicitAny": true,
"outDir": "built",
"rootDir": "."
},
"exclude": ["pxt_modules/**/*test.ts"]
}

0 comments on commit f194c19

Please sign in to comment.