2017-12-22 14:00:23 -08:00
|
|
|
/// <reference path="./moduleView.ts" />
|
2017-12-18 13:04:17 -08:00
|
|
|
|
|
|
|
namespace pxsim.visuals {
|
2017-12-22 14:00:23 -08:00
|
|
|
export class UltrasonicSensorView extends ModuleView implements LayoutElement {
|
2017-12-18 13:04:17 -08:00
|
|
|
|
|
|
|
constructor(port: number) {
|
|
|
|
super(ULTRASONIC_SVG, "ultrasonic", NodeType.UltrasonicSensor, port);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|