214
|
1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
2 @prefix : <http://projects.bigasterisk.com/room/> .
|
|
3 @prefix ha: <http://bigasterisk.com/homeauto/> .
|
|
4 @prefix sensor: <http://bigasterisk.com/homeauto/sensor/> .
|
|
5 @prefix houseLoc: <http://bigasterisk.com/homeauto/houseLoc/> .
|
|
6
|
|
7
|
|
8 @prefix shopPin: <http://bigasterisk.com/homeauto/boardShop/pin/> .
|
|
9 @prefix shopBarcode: <http://bigasterisk.com/homeauto/boardShop/barcode/> .
|
|
10 @prefix shopButtons: <http://bigasterisk.com/homeauto/boardShop/buttons/> .
|
|
11 @prefix shopOw: <http://bigasterisk.com/homeauto/boardShop/oneWire/> .
|
|
12 @prefix shopShift: <http://bigasterisk.com/homeauto/boardShop/shift/> .
|
|
13 @prefix shopPwm: <http://bigasterisk.com/homeauto/boardShop/pwm/> .
|
|
14
|
|
15 ha:boardShop a :ArduinoBoard;
|
|
16 :device "/dev/serial/by-id/usb-FTDI_FT232R_USB_UART_A4001hrf-if00-port0";
|
|
17 :boardTag "atmega168";
|
|
18 rdfs:comment "board is like diecimila with atmega168";
|
|
19 :hasPin
|
|
20 shopPin:d0, shopPin:d1, shopPin:d2, shopPin:d3, shopPin:d4, shopPin:d5, shopPin:d6, shopPin:d7, shopPin:d8, shopPin:d9, shopPin:d10, shopPin:d11, shopPin:d12, shopPin:d13, shopPin:a4, shopPin:a5 .
|
|
21
|
|
22 shopPin:d0 :pinNumber 0 .
|
|
23 shopPin:d1 :pinNumber 1 .
|
|
24 shopPin:d2 :pinNumber 2; :connectedTo shopBarcode:Txblack .
|
|
25 shopPin:d3 :pinNumber 3; :connectedTo shopBarcode:RxGreen .
|
|
26 shopPin:d4 :pinNumber 4; :connectedTo shopOw: .
|
|
27 shopPin:d5 :pinNumber 5; :connectedTo shopButtons:x .
|
|
28 shopPin:d6 :pinNumber 6; :connectedTo shopButtons:x .
|
|
29 shopPin:d7 :pinNumber 7; :connectedTo shopButtons:x .
|
|
30 shopPin:d8 :pinNumber 8; :connectedTo shopButtons:rot .
|
|
31 shopPin:d9 :pinNumber 9; :connectedTo shopButtons:rot .
|
|
32 shopPin:d10 :pinNumber 10; :connectedTo shopShift:data .
|
|
33 shopPin:d11 :pinNumber 11; :connectedTo shopShift:briteLatch .
|
|
34 shopPin:d12 :pinNumber 12; :connectedTo shopShift:lightClock .
|
|
35 shopPin:d13 :pinNumber 13; :connectedTo shopShift:briteClock .
|
|
36
|
|
37 # shiftbrite EI (arduino d12) still needs to be connected to +5
|
|
38
|
|
39 #barcode red: +5V
|
|
40 #barcode white: gnd
|
|
41 #SoftwareSerial barcode = SoftwareSerial(/* rx pin, green */ 3,
|
|
42 # /* tx pin, black */ 2,
|
|
43 # /* inverse */ true);
|