-
Notifications
You must be signed in to change notification settings - Fork 0
/
clapswitch.json
1 lines (1 loc) · 1.24 KB
/
clapswitch.json
1
{"README.md":"","main.blocks":"<xml xmlns=\"https://developers.google.com/blockly/xml\"><block type=\"pxt-on-start\" x=\"20\" y=\"20\"/><block type=\"device_forever\" x=\"225\" y=\"20\"/></xml>","main.ts":"/**\n * Functions are mapped to blocks using various macros\n * in comments starting with %. The most important macro\n * is \"block\", and it specifies that a block should be\n * generated for an **exported** function.\n */\n\n//% color=\"#AA278D\" weight=100\nnamespace hello {\n //% block\n export function helloWorld() {\n\n }\n\n // note that Caml casing yields lower case\n // block text with spaces\n\n //% block\n export function camlCaseTwo() {\n\n }\n}","pxt.json":"{\n \"name\": \"clapswitch\",\n \"description\": \"\",\n \"dependencies\": {\n \"core\": \"*\",\n \"radio\": \"*\"\n },\n \"files\": [\n \"main.blocks\",\n \"main.ts\",\n \"README.md\"\n ],\n \"targetVersions\": {\n \"branch\": \"v3.0.33\",\n \"tag\": \"v3.0.33\",\n \"commits\": \"https://github.com/microsoft/pxt-calliope/commits/3742cc45f2721da346c8f20d3634ddd20487fcf9\",\n \"target\": \"3.0.33\",\n \"pxt\": \"6.0.23\"\n },\n \"preferredEditor\": \"tsprj\"\n}\n"}