moves all of pxt-arduino breadboarding here...

... see pxt-arduino history starting here: acd49bb795
This commit is contained in:
darzu
2016-08-30 11:55:00 -07:00
parent 89e899cc79
commit a65e71f3b1
15 changed files with 4467 additions and 963 deletions

View File

@@ -0,0 +1,16 @@
namespace pxsim.visuals {
export class GenericComponentView implements IBoardComponent<any> {
public style: string;
public element: SVGElement;
defs: SVGElement[];
init(bus: EventBus, state: any, svgEl: SVGSVGElement, gpioPins: string[], otherArgs: string[]): void {
}
moveToCoord(xy: Coord): void {
}
updateState(): void {
}
updateTheme(): void {
}
}
}