2016-08-30 20:55:00 +02:00
|
|
|
/// <reference path="../node_modules/pxt-core/typings/bluebird/bluebird.d.ts"/>
|
|
|
|
/// <reference path="../node_modules/pxt-core/built/pxtsim.d.ts"/>
|
|
|
|
/// <reference path="../libs/microbit/dal.d.ts"/>
|
|
|
|
/// <reference path="./visuals/neopixel.ts"/>
|
|
|
|
|
|
|
|
namespace pxsim {
|
|
|
|
export interface PinBlockDefinition {
|
|
|
|
x: number,
|
|
|
|
y: number,
|
|
|
|
labels: string[]
|
|
|
|
}
|
|
|
|
export interface BoardImageDefinition {
|
|
|
|
image?: string,
|
|
|
|
outlineImage?: string,
|
|
|
|
width: number,
|
|
|
|
height: number,
|
|
|
|
pinDist: number,
|
|
|
|
pinBlocks: PinBlockDefinition[],
|
|
|
|
};
|
|
|
|
export interface BoardDefinition {
|
|
|
|
visual: BoardImageDefinition | string,
|
|
|
|
gpioPinBlocks?: string[][],
|
|
|
|
gpioPinMap: {[pin: string]: string},
|
|
|
|
groundPins: string[],
|
|
|
|
threeVoltPins: string[],
|
|
|
|
attachPowerOnRight?: boolean,
|
2016-08-30 23:13:44 +02:00
|
|
|
onboardComponents?: string[]
|
2016-08-30 20:55:00 +02:00
|
|
|
}
|
|
|
|
export interface FactoryFunctionPinAlloc {
|
|
|
|
type: "factoryfunction",
|
|
|
|
functionName: string,
|
|
|
|
pinArgPositions: number[],
|
|
|
|
otherArgPositions?: number[],
|
|
|
|
}
|
|
|
|
export interface PredefinedPinAlloc {
|
|
|
|
type: "predefined",
|
|
|
|
pins: string[],
|
|
|
|
}
|
|
|
|
export interface AutoPinAlloc {
|
|
|
|
type: "auto",
|
|
|
|
gpioPinsNeeded: number | number[],
|
|
|
|
}
|
2016-08-31 06:15:27 +02:00
|
|
|
export interface PartVisualDefinition {
|
2016-08-31 23:48:44 +02:00
|
|
|
image: string,
|
|
|
|
width: number,
|
|
|
|
height: number,
|
|
|
|
left: number,
|
|
|
|
top: number,
|
|
|
|
pinDist: number,
|
2016-08-30 20:55:00 +02:00
|
|
|
}
|
2016-08-31 06:15:27 +02:00
|
|
|
export interface PartDefinition {
|
|
|
|
visual: string | PartVisualDefinition,
|
2016-08-30 20:55:00 +02:00
|
|
|
breadboardColumnsNeeded: number,
|
|
|
|
breadboardStartRow: string,
|
|
|
|
wires: WireDefinition[],
|
|
|
|
assemblyStep: number,
|
|
|
|
pinAllocation: FactoryFunctionPinAlloc | PredefinedPinAlloc | AutoPinAlloc,
|
|
|
|
}
|
|
|
|
export interface WireDefinition {
|
2016-08-31 06:15:27 +02:00
|
|
|
start: WireLocationDefinition,
|
|
|
|
end: WireLocationDefinition,
|
2016-08-30 20:55:00 +02:00
|
|
|
color: string,
|
|
|
|
assemblyStep: number
|
|
|
|
};
|
2016-08-31 06:15:27 +02:00
|
|
|
export type WireLocationDefinition =
|
2016-08-30 20:55:00 +02:00
|
|
|
["breadboard", string, number] | ["GPIO", number] | "ground" | "threeVolt";
|
|
|
|
|
|
|
|
export const MICROBIT_DEF: BoardDefinition = {
|
|
|
|
visual: "microbit",
|
|
|
|
gpioPinBlocks: [
|
|
|
|
["P0"], ["P1"], ["P2"],
|
|
|
|
["P3"],
|
|
|
|
["P4", "P5", "P6", "P7"],
|
|
|
|
["P8", "P9", "P10", "P11", "P12"],
|
|
|
|
["P13", "P14", "P15", "P16"],
|
|
|
|
["P19", "P20"],
|
|
|
|
],
|
|
|
|
gpioPinMap: {
|
|
|
|
"P0": "P0",
|
|
|
|
"P1": "P1",
|
|
|
|
"P2": "P2",
|
|
|
|
"P3": "P3",
|
|
|
|
"P4": "P4",
|
|
|
|
"P5": "P5",
|
|
|
|
"P6": "P6",
|
|
|
|
"P7": "P7",
|
|
|
|
"P8": "P8",
|
|
|
|
"P9": "P9",
|
|
|
|
"P10": "P10",
|
|
|
|
"P11": "P11",
|
|
|
|
"P12": "P12",
|
|
|
|
"P13": "P13",
|
|
|
|
"P14": "P14",
|
|
|
|
"P15": "P15",
|
|
|
|
"P16": "P16",
|
|
|
|
"P19": "P19",
|
|
|
|
"P20": "P20",
|
|
|
|
},
|
|
|
|
groundPins: ["GND"],
|
|
|
|
threeVoltPins: ["+3v3"],
|
|
|
|
attachPowerOnRight: true,
|
2016-08-30 23:13:44 +02:00
|
|
|
onboardComponents: ["buttonpair", "ledmatrix"],
|
2016-08-30 20:55:00 +02:00
|
|
|
}
|
2016-08-31 06:15:27 +02:00
|
|
|
export const PART_DEFINITIONS: Map<PartDefinition> = {
|
2016-08-30 20:55:00 +02:00
|
|
|
"ledmatrix": {
|
|
|
|
visual: "ledmatrix",
|
|
|
|
breadboardColumnsNeeded: 8,
|
|
|
|
breadboardStartRow: "h",
|
|
|
|
pinAllocation: {
|
|
|
|
type: "auto",
|
|
|
|
gpioPinsNeeded: [5, 5],
|
|
|
|
},
|
|
|
|
assemblyStep: 0,
|
|
|
|
wires: [
|
|
|
|
{start: ["breadboard", `j`, 0], end: ["GPIO", 5], color: "purple", assemblyStep: 1},
|
|
|
|
{start: ["breadboard", `j`, 1], end: ["GPIO", 6], color: "purple", assemblyStep: 1},
|
|
|
|
{start: ["breadboard", `j`, 2], end: ["GPIO", 7], color: "purple", assemblyStep: 1},
|
|
|
|
{start: ["breadboard", `j`, 3], end: ["GPIO", 8], color: "purple", assemblyStep: 1},
|
|
|
|
{start: ["breadboard", `a`, 7], end: ["GPIO", 9], color: "purple", assemblyStep: 1},
|
|
|
|
{start: ["breadboard", `a`, 0], end: ["GPIO", 0], color: "green", assemblyStep: 2},
|
|
|
|
{start: ["breadboard", `a`, 1], end: ["GPIO", 1], color: "green", assemblyStep: 2},
|
|
|
|
{start: ["breadboard", `a`, 2], end: ["GPIO", 2], color: "green", assemblyStep: 2},
|
|
|
|
{start: ["breadboard", `a`, 3], end: ["GPIO", 3], color: "green", assemblyStep: 2},
|
|
|
|
{start: ["breadboard", `j`, 4], end: ["GPIO", 4], color: "green", assemblyStep: 2},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"buttonpair": {
|
|
|
|
visual: "buttonpair",
|
|
|
|
breadboardColumnsNeeded: 6,
|
|
|
|
breadboardStartRow: "f",
|
|
|
|
pinAllocation: {
|
|
|
|
type: "predefined",
|
|
|
|
pins: ["P13", "P12"],
|
|
|
|
},
|
|
|
|
assemblyStep: 0,
|
|
|
|
wires: [
|
|
|
|
{start: ["breadboard", "j", 0], end: ["GPIO", 0], color: "yellow", assemblyStep: 1},
|
|
|
|
{start: ["breadboard", "a", 2], end: "ground", color: "blue", assemblyStep: 1},
|
|
|
|
{start: ["breadboard", "j", 3], end: ["GPIO", 1], color: "orange", assemblyStep: 2},
|
|
|
|
{start: ["breadboard", "a", 5], end: "ground", color: "blue", assemblyStep: 2},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
"neopixel": {
|
|
|
|
visual: "neopixel",
|
|
|
|
breadboardColumnsNeeded: 5,
|
|
|
|
breadboardStartRow: "h",
|
|
|
|
pinAllocation: {
|
|
|
|
type: "factoryfunction",
|
|
|
|
functionName: "neopixel.create",
|
|
|
|
pinArgPositions: [0],
|
|
|
|
otherArgPositions: [1],
|
|
|
|
},
|
|
|
|
assemblyStep: 0,
|
|
|
|
wires: [
|
|
|
|
{start: ["breadboard", "j", 1], end: "ground", color: "blue", assemblyStep: 1},
|
|
|
|
{start: ["breadboard", "j", 2], end: "threeVolt", color: "red", assemblyStep: 2},
|
|
|
|
{start: ["breadboard", "j", 3], end: ["GPIO", 0], color: "green", assemblyStep: 2},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
"speaker": {
|
|
|
|
visual: {
|
|
|
|
image: "/static/hardware/speaker.svg",
|
|
|
|
width: 500,
|
|
|
|
height: 500,
|
|
|
|
left: -180,
|
|
|
|
top: -135,
|
|
|
|
pinDist: 70,
|
|
|
|
},
|
|
|
|
breadboardColumnsNeeded: 5,
|
|
|
|
breadboardStartRow: "f",
|
|
|
|
pinAllocation: {
|
|
|
|
type: "auto",
|
|
|
|
gpioPinsNeeded: 1,
|
|
|
|
},
|
|
|
|
assemblyStep: 0,
|
|
|
|
wires: [
|
|
|
|
{start: ["breadboard", "j", 1], end: ["GPIO", 0], color: "white", assemblyStep: 1},
|
|
|
|
{start: ["breadboard", "j", 3], end: "ground", color: "white", assemblyStep: 1},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
export const builtinComponentSimVisual: Map<() => visuals.IBoardComponent<any>> = {
|
|
|
|
"buttonpair": () => new visuals.ButtonPairView(),
|
|
|
|
"ledmatrix": () => new visuals.LedMatrixView(),
|
|
|
|
"neopixel": () => new visuals.NeoPixelView(),
|
|
|
|
};
|
|
|
|
export const builtinComponentSimState: Map<(d: DalBoard) => any> = {
|
|
|
|
"buttonpair": (d: DalBoard) => d.buttonPairState,
|
|
|
|
"ledmatrix": (d: DalBoard) => d.ledMatrixState,
|
|
|
|
"edgeconnector": (d: DalBoard) => d.edgeConnectorState,
|
|
|
|
"serial": (d: DalBoard) => d.serialState,
|
|
|
|
"radio": (d: DalBoard) => d.radioState,
|
|
|
|
"thermometer": (d: DalBoard) => d.thermometerState,
|
|
|
|
"accelerometer": (d: DalBoard) => d.accelerometerState,
|
|
|
|
"compass": (d: DalBoard) => d.compassState,
|
|
|
|
"lightsensor": (d: DalBoard) => d.lightSensorState,
|
|
|
|
"neopixel": (d: DalBoard) => d.neopixelState,
|
|
|
|
};
|
|
|
|
export const builtinComponentPartVisual: Map<(xy: visuals.Coord) => visuals.SVGElAndSize> = {
|
|
|
|
"buttonpair": (xy: visuals.Coord) => visuals.mkBtnSvg(xy),
|
|
|
|
"ledmatrix": (xy: visuals.Coord) => visuals.mkLedMatrixSvg(xy, 8, 8),
|
|
|
|
"neopixel": (xy: visuals.Coord) => visuals.mkNeoPixelPart(xy),
|
|
|
|
};
|
|
|
|
}
|