969
|
1 @prefix : <http://projects.bigasterisk.com/room/> .
|
|
2 @prefix board0: <http://bigasterisk.com/homeauto/board0> .
|
|
3 @prefix board0pin: <http://bigasterisk.com/homeauto/board0/pin/> .
|
|
4 @prefix sensor: <http://bigasterisk.com/homeauto/sensor/> .
|
|
5 @prefix houseLoc: <http://bigasterisk.com/homeauto/houseLoc/> .
|
|
6
|
|
7 board0: a :ArduinoBoard;
|
|
8 :device "/dev/serial/by-id/usb-FTDI_FT232R_USB_UART_A900cepU-if00-port0";
|
|
9 :boardTag "atmega328";
|
|
10 :hasPin board0pin:d3 .
|
|
11
|
|
12 board0pin:d3 :pinNumber 3 .
|
|
13 board0pin:d4 :pinNumber 4 .
|
|
14
|
|
15 board0pin:d3 :connectedTo sensor:motion0 .
|
|
16 sensor:motion0 a :MotionSensor;
|
|
17 :sees houseLoc:storage .
|
|
18
|
|
19
|