ࡱ>  @ RcbjbjFF2,,k....$.:,011111119999999$;R;>:]21122:11w:4442R1194294441~0 >u..344$:0:4>4?44>?$4 1"2432G2111::4 SRF235 Ultrasonic range finder Technical Specification The SRF235 is a narrow beam ultrasonic ranger, with a beam width of just 15.An industrial high frequency air coupled transducer operating at 235KHz is used for both Transmit and Receive. The beam patterns below show compare the 15 SRF235 with the 55 typical pattern of the SRF04.  INCLUDEPICTURE "http://www.robot-electronics.co.uk/images/beam3.gif" \* MERGEFORMATINET  INCLUDEPICTURE "http://www.robot-electronics.co.uk/images/beam.gif" \* MERGEFORMATINET SRF235 Beam PatternSRF04 Beam patternLimitations & Characteristics 235KHz ultrasound does not transmit as easily through air as 40KHz does, so the range of the SRF235 is limited to around 1 meter for normal objects out to a maximum of 1.2 meters for a large surface. The use of a single transducer for both transmit and receive means there is a blanking zone out to 10cm, so the effective range is 10cm to 1.2m. The 235KHz narrow 15 beam behaves more like light on a mirror than 40KHz sensors, so looking at a hard flat surface at an angle of more than 8 or 9 will not yield an echo from that surface. It may be that the reflected beam hits an object and bounces back. In this case the echo from the object will detected and the sonar will indicate the total range of sonar to flat surface + flat surface to object. The flat surface its self will be invisible to the sonar. Under the same circumstances, a 40KHz sensor such as the SRF04 would detect the flat surface - not the reflected object.  INCLUDEPICTURE "http://www.robot-electronics.co.uk/images/srf235s1.GIF" \* MERGEFORMATINET  INCLUDEPICTURE "http://www.robot-electronics.co.uk/images/srf235s2.GIF" \* MERGEFORMATINET  INCLUDEPICTURE "http://www.robot-electronics.co.uk/images/srf235s3.GIF" \* MERGEFORMATINET At an angle of just 9 degrees, the beam does not reflect back to the sonarHere there is an object in the path of the reflected beam. The beam will bounce off the object and -back via the flat surface to the sonar, which will think there is an object off in the distance in front of it.Soft furnishings do not reflect well at 235KHz and might not be detected. Please be aware of these characteristics before considering the purchase of an SRF235. The SRF235 detects hard round objects well, such as table and chair legs etc. This makes the SRF235 ideal for detailed local mapping around the robot, but not for longer range sensing. Using the SRF235 along side a 40KHz sonar, makes an excellent sensor combination. Communication Communication with the SRF235 ultrasonic rangefinder is via the I2C bus. This is available on popular controllers such as the OOPic, Stamp BS2p, PicAxe etc. as well as a wide variety of micro-controllers. To the programmer the SRF235 behaves in the same way as the ubiquitous 24xx series EEPROM's, except that the I2C address is different. The default shipped address of the SRF235 is 0xE0. It can be changed by the user to any of 16 addresses E0, E2, E4, E6, E8, EA, EC, EE, F0, F2, F4, F6, F8, FA, FC or FE, therefore up to 16 sonar's can be used. Connections The connections to the SRF235 are identical to the SRF08and SRF10 rangers. The "No Connection" pin should be left unconnected. It is actually the CPU MCLR line and is used once only in our workshop to program the PIC18F4220 on-board after assembly, and has an internal pull-up resistor. The SCL and SDA lines should each have a pull-up resistor to +5v somewhere on the I2C bus. You only need one pair of resistors, not a pair for every module. They are normally located with the bus master rather than the slaves. The SRF235 is always a slave - never a bus master. If you need them, I recommend 1.8k resistors. Some modules such as the OOPic already have pull-up resistors and you do not need to add any more.  INCLUDEPICTURE "http://www.robot-electronics.co.uk/images/con235.GIF" \* MERGEFORMATINET  Registers The SRF235 appears as a set of 4 registers. LocationReadWrite0Software RevisionCommand Register1Unused (reads 0x80)N/A2Range High ByteN/A3Range Low ByteN/AOnly location 0 can be written to. Location 0 is the command register and is used to start a ranging session. It cannot be read. Reading from location 0 returns the SRF235 software revision. The ranging lasts for 10mS, and the SRF235 will not respond to commands on the I2C bus whilst it is ranging. Locations, 2 and 3, are the 16bit unsigned result from the latest ranging - high byte first. The meaning of this value depends on the command used, and is either the range in inches, or the range in cm or the flight time in uS. A value of 0 indicates that no objects were detected. A new ranging may be initiated as soon as you have the read the range from the last one - no delays are needed. Commands The are three commands to initiate a ranging (80 to 82), to return the result in inches, centimeters or microseconds. There is also a set of commands to change the I2C address. CommandActionDecimalHex800x50Ranging Mode - Result in inches810x51Ranging Mode - Result in centimeters820x52Ranging Mode - Result in micro-seconds1600xA01st in sequence to change I2C address1650xA53rd in sequence to change I2C address1700xAA2nd in sequence to change I2C addressRanging To initiate a ranging, write one of the above commands to the command register and wait the required amount of time for completion and read the result. The echo buffer is cleared at the start of each ranging. The ranging lasts for 10mS, after this the range can be read from locations 2 and 3. Checking for Completion of Ranging You do not have to use a timer on your own controller to wait for ranging to finish. You can take advantage of the fact that the SRF235 will not respond to any I2C activity whilst ranging. Therefore, if you try to read from the SRF235 (we use the software revision number a location 0) then you will get 255 (0xFF) whilst ranging. This is because the I2C data line (SDA) is pulled high if nothing is driving it. As soon as the ranging is complete the SRF235 will again respond to the I2C bus, so just keep reading the register until its not 255 (0xFF) anymore. You can then read the sonar data. Your controller can take advantage of this to perform other tasks while the SRF235 is ranging. LED The red LED is used to flash out a code for the I2C address on power-up (see below). It also gives a brief flash during the "ping" whilst ranging. Changing the I2C Bus Address To change the I2C address of the SRF235 you must have only one sonar on the bus. Write the 3 sequence commands in the correct order followed by the address. Example; to change the address of a sonar currently at 0xE0 (the default shipped address) to 0xF2, write the following to address 0xE0; (0xA0, 0xAA, 0xA5, 0xF2 ). These commands must be sent in the correct sequence to change the I2C address, additionally, No other command may be issued in the middle of the sequence. The sequence must be sent to the command register at location 0, which means 4 separate write transactions on the I2C bus. When done, you should label the sonar with its address, however if you do forget, just power it up without sending any commands. The SRF235 will flash its address out on the LED. One long flash followed by a number of shorter flashes indicating its a>n  @ B d h l \ b d f    7 8 U 67ҿobbҿhvhvKHOJaJ-j$!hvhvCJKHOJPJQJU^J-jhvhvCJKHOJPJQJU^JhvhvCJKHOJPJ$hvhvCJKHOJPJQJ^J$hvhvCJKHOJPJQJ^J*hvhv5CJKHOJPJQJ\^J.hvhv5CJ$KHOJPJQJ\^JaJ$#p d   $ 7 hOO$dd$1$4$7$8$If[$\$a$gdv[kd;$$IfT0($634apT$$1$4$7$8$Ifa$gdv$dd1$4$7$8$[$\$a$gdv$dd1$4$7$8$[$\$a$gdvc7 8 6Y}}}$$1$4$7$8$Ifa$gdv$dd1$4$7$8$[$\$a$gdv[kd:<$$IfT0($634apTUVWXYZ{|)6]i12ѾѾѧѾѾѐѾmmѾVѾm-jGIhvhvCJKHOJPJQJU^J*hvhv5CJKHOJPJQJ\^JhvhvKHOJaJ-jDhvhvCJKHOJPJQJU^J-j@hvhvCJKHOJPJQJU^J$hvhvCJKHOJPJQJ^J-jhvhvCJKHOJPJQJU^J-j<hvhvCJKHOJPJQJU^J!YZ {zzz$$1$4$7$8$Ifa$gdvskdH$$IfTF[j ?_)6    3K4apT{|)]1wwwwbwI$dd$1$4$7$8$If[$\$a$gdv$dd1$4$7$8$[$\$a$gdv$dd1$4$7$8$[$\$a$gdvskdH$$IfTF[j ?_)6    3K4apT&kdG$$IfTF  g. 0) 6    34` ab pT$dd$1$4$7$8$If[$\$a$gdv&kdg$$IfTF  g. 0) 6    34` ab pT$dd$1$4$7$8$If[$\$a$gdv45JK 01`agh&!H!##$$(`q`r```````````````````````aaaaa a,a-a9a:aFaGaab hvo(U*hvhv5CJKHOJPJQJ\^J$hvhvCJKHOJPJQJ^JhvhvKHOJaJJ &kd$$IfTF  g. 0) 6    34` ab pT$dd$1$4$7$8$If[$\$a$gdv 0457&kd$$IfTF  g. 0) 6    34` ab pT$dd$1$4$7$8$If[$\$a$gdv7FJK&kdǣ$$IfTF  g. 0) 6    34` ab pT$dd$1$4$7$8$If[$\$a$gdvKx6kd$$IfT408  0'634` abpT$$1$4$7$8$Ifa$gdv$dd1$4$7$8$[$\$a$gdv$$1$4$7$8$Ifa$gdv$$1$4$7$8$Ifa$gdvC11$$1$4$7$8$Ifa$gdvkd$$IfT4F 8  0'6    34` ab pT-kd$$IfTF 8  0'6    34` ab pT$$1$4$7$8$Ifa$gdv 0$$1$4$7$8$Ifa$gdv$$1$4$7$8$Ifa$gdv0149?--$$1$4$7$8$Ifa$gdvkd$$IfTF 8  0'6    34` ab pT9`a-kd?$$IfTF 8  0'6    34` ab pT$$1$4$7$8$Ifa$gdvaceg$$1$4$7$8$Ifa$gdv$$1$4$7$8$Ifa$gdvghlq?--$$1$4$7$8$Ifa$gdvkd_$$IfTF 8  0'6    34` ab pTq-kd$$IfTF 8  0'6    34` ab pT$$1$4$7$8$Ifa$gdv$$1$4$7$8$Ifa$gdv$$1$4$7$8$Ifa$gdv?--$$1$4$7$8$Ifa$gdvkd$$IfTF 8  0'6    34` ab pT-kd$$IfTF 8  0'6    34` ab pT$$1$4$7$8$Ifa$gdv&!#$P`X`c`q`$$1$4$7$8$Ifa$gdv$dd1$4$7$8$[$\$a$gdvddress. The flashing is terminated immediately on sending a command the SRF235. AddressLong FlashShort flashesDecimalHex224E010226E211228E412230E613232E814234EA15236EC16238EE17240F018242F219244F4110246F6111248F8112250FA113252FC114254FE115Take care not to set more than one sonar to the same address, there will be a bus collision and very unpredictable results. Ȍ:  l 8ٳ 4 8-1 45 2\¤\ T: 02-2678-8556 fax : 02-2679-8557 H֘t :  HYPERLINK "http://www.roboblock.co.kr" http://www.roboblock.co.kr E-mail :  HYPERLINK "mailto:robotoz@hotmail.com" robotoz@hotmail.com q`r`z`~`B00$$1$4$7$8$Ifa$gdvkd߮$$IfT4F  06    34` ab pT~````kd $$IfT4\ ~L 0634` abp(T$$1$4$7$8$Ifa$gdv`````$$1$4$7$8$Ifa$gdv``$kdE$$IfT\ ~L (0634` abp(T`````$$1$4$7$8$Ifa$gdv``$kd$$IfT\ ~L (0634` abp(T`````$$1$4$7$8$Ifa$gdv``$kdݳ$$IfT\ ~L (0634` abp(T`````$$1$4$7$8$Ifa$gdv``$kd)$$IfT\ ~L (0634` abp(T`````$$1$4$7$8$Ifa$gdv``$kdu$$IfT\ ~L (0634` abp(T`````$$1$4$7$8$Ifa$gdv``$kd$$IfT\ ~L (0634` abp(T`````$$1$4$7$8$Ifa$gdv``$kd $$IfT\ ~L (0634` abp(T`````$$1$4$7$8$Ifa$gdv``$kdY$$IfT\ ~L (0634` abp(T`````$$1$4$7$8$Ifa$gdv``$kd$$IfT\ ~L (0634` abp(T`````$$1$4$7$8$Ifa$gdv``$kd$$IfT\ ~L (0634` abp(T``aaa$$1$4$7$8$Ifa$gdvaa$kd=$$IfT\ ~L (0634` abp(Ta a aaa$$1$4$7$8$Ifa$gdvaa$kd$$IfT\ ~L (0634` abp(Taaaaa$$1$4$7$8$Ifa$gdva a$kd$$IfT\ ~L (0634` abp(T a$a'a)a,a$$1$4$7$8$Ifa$gdv,a-a$kd!$$IfT\ ~L (0634` abp(T-a1a4a6a9a$$1$4$7$8$Ifa$gdv9a:a$kdm$$IfT\ ~L (0634` abp(T:a>aAaCaFa$$1$4$7$8$Ifa$gdvFaGa$kd$$IfT\ ~L (0634` abp(TGaaaJbnbb0ccc$dd1$4$7$8$[$\$a$gdvbbbbbbb,c.cDcFclccccccccchvhvo(jhvUhophv0Jo(jhvU hvo(hvjhvU01h2P. A!"#$%S $!DdP  S ,A beam3b LZJd_\ DnT LZJd_PNG  IHDR+~\PLTE1999RRRRcc11kkkss11{{{11ssBBRRss99ZZBBssƥ!!11΄Δε99cc{{֥֜11BBkk{{޽!!11RR{{焄JJ便ﭭﵵ))99BBZZkk!!))1199BBJJRRZZccss{{cbKGDH cmPPJCmp0712HsIDATx^s#7rgtpMB'yh/RU/179ߥB%ZQ%=1bFkUk FT t]8j(\ Ej`E$ ȨVtTUX Sr5j`E'@O9Nr= W+:zAVt\ )X Sr5j=.U-z\Gլ7䌎iu_T+rJx| T~Q񱒔Մ\TUq_#9/x`oY5_xsA)$ZV|ҞSZ}^ uTU|4lQB:xɊ"|ϐS}:CQ&]Zsg i՝U&]p'f2-22jxӪ;ͭL:d%Z*5 ::ˤ[V:3ԭEY&ݲ:R:'5s2uIT’:ˤ[Vq-<2LTF|jo^>Lt':].%dXO$^wL\[ ,u~R-H(Jc﷟|b)O֕SKV }t\OidJm<7HdE.y4b0BRJ/ţjcVš%Vxj{FV5RcʪRZl3ֳmOOۧ^Uvgu6d_pK-q"\*[1tP+Y*u6fꚽff^|Y*tmB]dg:3+W i:>nslI},vajeg>NLjx1 8H>J#W{2DqgXr0{|k-^[H1{գ#mxuD7V. ,9IlV_cuqe] 8XXtB0z4e2sgdBa<]EjVc)N}{caj tXW ? WXAV cuge"[׶(9wMQj2 DbCС\RMG<3NG'ǨDȥ,Y%KFĊwq1:UH:fU'U b~}&i-4*5YW?INKL|M;e"=iVu+'Y])T'XmS,OVlܺ$_STKV-:W1\i|: ۰B"ɑ}vUd&~Ƣpjæ!乇HnAV6nD#!6& }f]a;L}{!:d?M[B"ɑ}MOɅ9=?2kCHVپq| VqH8ʳj =I:[LaŒ-C_ ڍ۱ #ɣr"*k7UtdU ֬.wqWt'2q|;V*nDC4/[R oU< uG37˩YUf#x80͊ VkpaƂ#7׳I?D 9mߎpH @0}2`unPBsQh<+$܏[ )Xp>ҫai0 Iզ>V ڰ#nzT ד qؖH#]\6q-X9q& )Gvfw ,`c+3Ǧ+2rVMT}86HrR~fڰ/@'TIHt`/y(u4 +/n]G*;rpAL81YQat‚cyrNmv1jw2e#jZ/};aBR&**gpBaL0eg¢ =zCZ[#J6f%p_pQ4wOUf]l '$XYE͆7Du>՛SbNtj.Jnj[4W'xzN=XXY0;v[Xd1INW M XEm3Q&2* o#V`%E#m9X0Xg&myox2,R`F^Ґ&\WqV0!V̤A3 IQ/kbvDܔTFU"Z-`Q$tU[*R-qTÆƹWewK&-(w:P `buA\#OfN[mœTtT-xCԹs*QC٦M g(*3ucYjl *ޮḦ́Nh3*ҿibEl)#rtWW%"W'fǚVy/m^qRLZTJߑ{ : b$Xjig;3O4KgK\8eN|f .$>KT_U: 띸4Z(2}0|ry>pmBvUoؿnWɶON&`U7ŵ||1ru ~+58r0J˙ָAv}|ۍsH*& -{->6%Wx:ؑ9/Vel\e~p)YS fr/s-vݖ}:H 04~Z rgE f [VSb1~r,+aZ~}ۖWzeEU>7:g)j6CB,=M?/_MYg c|p>eY1FTPQ{EUcO/o_PlTnE΍@XB20r52_G = <]p!6hHߋʴgĥ7CV78p$?#(U?̌9`4V|L5S˙W~ҭ 8*9?%Yя#GM֠V-/պOvogb_|,\oJ !Ո ~MY_#H{S =柲^A0ea8˩/ R2;PXA/D?%Nq`SAGd/2Noޱ>+pdۄP)V #xXs.r!X=b FR a)}`+؛XAvc%UȬHJ`U5\. Ϛz}ߡGx=/6Ҳ\!H m@u.yrȇި㻀׈O}ԵG,yNƣ1g+Xw4"iuB'2BPNxA*Ϣ˕n'rɯ)Vu@v ׼bjJ؁wpw(QvELႽvv- `Vk$XSR:.1%X)ݮ5R&FJ{a`V>_>O(~,pv@G6%ͤȋO/~я5tMGs(01ҠdG0k(ŠT0ؚ7Ն;B>rZ{tTΰRu9^Rzy 2v|4mT60d\G0=&A Q8(pXxP[}zb-xM6t" U1Ɔ1W3.ڡ)c?ʩ], 5j@PRU|r6igipK؟Nź?9Bf~XN_!GIEY@CEy7Fi)! E5H k&3:fXpi^, `!dwu~hn+rF;QaAM2La'~%’Q- e]PA\ѼfJtI1~.yXenނ1W$nȂVuR;~;a  "T13)lȤOdW9C,6>߼T'Cm|2zY~qCzU=MAMq‡tQĦ6̲zX\mSM*zu]_jgy&bz@Z +?zZqVUi7HggE$+=0  #WaS-bv\V?Vv8ZN 'XYAWR ,o-WfY=pz*ޘٟD=G ,o]V{˯i~8mGR/o]VYŋID!.S zdзe.g)fU.,V*RvvXIL~*,4'>S!;>I$74U4QW}UvΜaU3zcRREȆUrV|JHiŤ2Qʅ /nE hCy&SJ Wɐ@5%WHRMk$B;fhYM0Xa-zUʿ1L{a)@ jp%v"zdca*@  O*e݃LBظ z:+$-i%9Tj4'o?2*oKU_CzOvW;UXD^AN#K*o7D֟ҰզfnW}eh5(dV U6çIȬi喻/ S"Y5OOҷҥVĊ֔xAV=f{bE.Ajʔ6s<u`"̬ĔEa:e$>߈H1!T<"Z뒕f@'SⅰJK_ɹ6kG뒕f@F+wݿ:b+jr ,U{_~01"ڗ_#`Ԩ{i&]Sᬫ9?V}P[&Hdti'TpD5ƟZYD=Q S@/p5ƟeǬQ|r?7 JVwp5\]-+8lnݲGIVԨu6|_:NY9GIV$ז02s+/TS %+(>)p>p !+̀lsb}K`f<}Y:Yk̺8O'ڒH6NJ |}nFEUf@ɗ?Q*RG+y|)Q{s;uĊWsB_}N 3Ϫ %+x210""L/Ԟr7MKnSt̽UJ۩-j݉[㮲Rn=mfŖe˶;qb:7z̋-ss'P4rFwO?5cܬ9vɱ_JAR}zc[gj'w-7-Ȭclrrm 9Ź.;DyA(#>;L=Aar8̿ 43Q]CBt=1L@|.6vnͻȪ3A?OO^77lhtWtJ}6USdNyW߳&!oZ',͝12`2f˛E o?'vMp^%Cۻ#q^I?167yܝo$3BN(] K-=?v &&2! yBpntR?q ߒ[n4nn\`XT\/α$lVL i7>׉\ˍpidDroճG)!.lN 4n8[B)@`6NoWq\pCnw~|hGf?R.G&f鍑[lmY$:5|eˮ7$7Tn\~{1[ֈ[ 7\3&4n$l%A[3 YLM q~Hca1"gN JG_kWޖ%a!n`Xr&5ܼOj.@~аЖre<.Yˢ{Y^jisM0.w(z+kdDϞNT]@a7N5RCQH fӉ:݅n`V_;-SέJH(b/l&BV+{p#(3+Fn_MwD!&h =5(v=m!ub+qLpjH\}(։URk3Իeۻ"Cj9QpO#7:էی}5䖇8Tlx3wxrmІ[A]nH\,n^z4 ؗގWE?4$k*cKh-/^֛^!OۆW+ROP'l\ٰ݅[yL|ynmq&/6: B@ڈu޴Jʁ$rs ޕ;okܴN\5`4+p6yD7;N$Tn^~'t0I%#6Nr?@-TP0amQl~ދBqAʓ?1/&dLsZ_Cr7Ji6J Q亮((@yij#u74a^wʧM7턧VSe;oWF~^_8oc{RjM;wFr;v֙4Ur&+*rKo?[OQOc&[JGo#7bxrKoo}dg;>҉v_%$ufٙ7wH^{vbxLNd sobo$%2tC2#V"GCDROC:%Qnm?~:7h}݄X n/ HIo0&=: 7M9%ĭN 8oQXq!Ү9v*ns{ƀs3'x&aO18og=-KUA(7h)l&ol{zbQ45+24 +RIX;;NiʄL0mr>j+ߵ/GEぬܰo<"kZ#U StgFo+lڦ!`܃[gXG7K5b(wi-<Ϳ^Kܖ8h`N&. z{z 3^ueGsݩ6BӰ)ܸ}"E͑Sjh7Քht1?^ mӳ Sr&E<4OI NYp͞7w N<8jRZ:ۙ-#etŞVOShXnzSdO 7kTJbg u%cwKt#ij܈k3վ9a}CTܻүنuq[ll7[FVkP9AL4{JIENDB`$$If!vh55#v#v:V 6,534pT$$If!vh55#v#v:V 6,534pTBDdNV  S 2Asrf235s1b6^$ˆ(^`$,!qb(ywuA:JNمI1N2r4M2z&%HαYyͶxIV{܌%\RJh#1l=H$(aG&C .; "n1t smP:u-Q ~y"0yT%j?"趃Ə>?-z1/<@YAHWq"Ms"QCTSprxBEK͵+oYv/ 9Д/wF)OÉr7^Mph5-Nhjt0b~5=rc/E!a)j(" H!xOοbɽy: [PW-՞T娆~Ec|a9 m+jY+d< WաԾP@ P(|!x@M0bpFKc: NY*/5 ,"G<`Pfm b/(xMP\ E_+A`Ó 4Ѹ'Caֱ}ng{D<,"70m Ý(l5ԧFXԧHD]STP$wq+(Ɖ(DK vcq2-ψZAN:0_#hJưI O %h(T/y0baXUǢQ/e,w)4_{ HvGu,7LGrw¼[ZҠ_9]bdGZ8F"őH$HV.\A `0EwXyKb;hD#].vY%- ] EY&d^!2L!tht;J*VpP&9G- G 8ϻiYwcK -v>zgzwy+]]?4I^Ўo:ֻٝo~>?G_+@Ox8vGApD 4?5h ЭG LxO5^M4~b*\+vA5嫿a" j6#j :ރ{=|Y+A4 09/6Q .[mv.0ko盽5iōS{[{v\W3| ^퓦 K'.E6ĉ{z@Ƴn]]}Tln0eճCb3 |MLUd DL@KpcY6loP๥(^ |:֫nw&Lp!t4h4i5wa>)yQ5/W;qei ;L&4 [( ޾-:|S@٥f59frʒr4->2'N|^̾cEx tD +.w #鹚Rz\!Oa3maDȺq :q:4eF#Ih71g 8M&S Kx!PoxgqO??#v)`o )7%rQlk#߼ 3y?Iy>G`BGDm˥uKwtzAހPX|*ȃ0lJ ķ7shE",@~c(FҏWם_AA $׀AOJFe!-]#`A4" Ea@2u. i3}[ʊ'Ŭ3Pī=}:t?#X+CDC?nLO* ҙ@] yZ@J;!=dE*yå1-p\i|O:+F*'M㱯dQL@SCPWP&NiӅ3)(\V9'.ooDt:ִ^ A۠!a-1o@C\<g~\ q G ՠՓ8lJ5A7eCRV 6t}A\ϲk@b7]7|[̹ EXIE]aj]!idcB\oOZ@$,V% b #'V M**RQHLR8Q C U\,aPXIK9p (5r]䜸 EQ\C:M\~{,aE;~r+ } ug0_yc RoooғZJ7ޓ'O#^ r?Sp\%) u9.&uE'~y*_Ok8Q@|s̠5O٢[۝MbD5qz#Š 6 F ˙V" j!hW`9#O;{gR+؉k\#W )oK' i/l$ɣ?Ol'-J߼0-hM:+tL7+v#_ b c_Tsn7îT26>7Ɖ21~A/P]'葳%mc(gBK'1˼,Q^C/]A:8wmvz7lG:b&= ^%X/42m"}_ӗ_fM^Ke ffK7qS>D{w*M,_*-ɌJ5ؠa'_}h>oʿ77KWxN=2?NvљF:C_|>C.렯r;},8}guyP2H/&t)%btd-3$noFiC<lsEbIRϓ[$?܊q!=H˦>N *6CJZ ijDų( odP0->4.檅qr~+żpLjiG[eˎ(fT{G[|9vңs|?3~^ O)fRba42 pc ?A4a:4MaҴ"duSʒSn%uzP}7]j 4Y,<܇2UG RNx% `15# Qbv_ KͧߺQO=^=xơàd2Nѭ81 t^Ȕʙ9x5j|tu$UF{țQ GKԲ{g"ldسbxD qWS١Z5C _lOڶ:1,A&*O %# m`ʦi'vjǽ-޻:Tqݗsiֈb$ıT@j":vHzy?>E aT ?|d@b]4b1ѹ3L+4iĖ}/La Ya+B45MG,iP:4 6Kܶ>!ׯ_ڍ,yyI^  Tl`cY&:t\N+DH0r΋|j>ܗr&p&, 9 :Ґ5~tNlv[##] NWk0 Ebj-7A|1+/9)-.|i&sȰ FX*Gav#Qq4;eTXy<ڋEŏoefˀ*5p"E[ ZP|Dy]o6UgZ7))ȼ =iaU~Fm1$z"E=pヸ/{S놑$wW Ep%<Žt@"gHVԅ2@4gee`EQF1Q *"5 Ӭ\- |lN43[/ZUuAFhAap#䩎 3^ z3 -:>.UFocf)@#Z> 'D T!-fPpkF4͵a'ZiQ;+ ;v|v%;Yބ*9 1ExnfD9^nz?`Ȝ:GlYҴ2~64 "^UUh DUtC0aZH'*ӻn6!_q";!WqyW91NRL)j VytԜ!Vh^ⷀ?6 6sq =1qOĻ8 x?<>NiE)pfcC9$pm-VI|d9V?F2QB1Hb % [ 2#sbxNleQ7* ^6A4qNzx%;~V<OpQant Ho|0pMЏ")w"|jSŞ@\w¾8?+N;K[ XN#c:W ?W eӉ#jSszNDPPfVP7Fwh6gY`0F}D$7z?M7ƥCHlG~pwpSW_uLE83)'"U˸1:J F@&)۾=,Prũι&fr={E9օ3_bE\ Jj#=*x$QׄS' YT  ǏΉս/դ'r V@1FM&8Ӑ*Z NO Y/4v ̣~_# N[𽣕Z2Ƿd!0"DK@. (j(N:/x1RCFPNa\ q@ ZuĮ"]g=KS<gk@\boYKZ`S6o밤Jԝ@re4 v%z*"RBⴞy(HT]#UqC0 93% Dt2,/xNBbImȖ|`"5ߟƤO $ސ-4ZqBzb œ>"@U%5VEËuH-|̺ jN=4P@Z7Qw' D9{˗}T8f$X_Į] 83m+xi36 )h#[@:_ Vg +I4~#{߄-!ֆu3)zF|!0բDU&o::#'˯_|@)=$%Gզ]_=frd?20վҥ D>NNY:[<#=jF+F`ZhMxQY(PdP82'w'jZndƚi ;ɭ)"r"A4 ܮa͏u3=o i dMQDi}xi}2Jέ׹~eƋ6b (nUY,j1@ Tݵĩ)`ݬM'^SZ`"iO 2V0#n昂93iJf$E8_cy~.݄t"p[CZ+ՙlS k9yUDĢFq`tNr7êY$^: h:`n2: a-pkN@YF(.]Pup!…/wȢW9RRڱj?BFрj3? n@9T\0`&A hӨ;B]g5mƾNT2.Yhͫxi"㳓4zک Ki͚pG1))@V꽢R8XR*ZTLvzBA}Cta~d"x >R䩇w%?0lW5 5Zh#7a8rcb|AU8cT*\2eZZlYҏ_wk-> DjT^Dg&N+ UY8.CC *wIq*r Q:%иJ1bLgtbRSqG VDSR C] H>>Bm6ޥ7nŇxi ÷3Wx:wNd7u[ %NVbU&&NU;b}"[lG4T/Fn#alIд "A6eǬ0V0&5 WJ`Tl,E:E1d~EW?9qJ0Pq`,ٿξJU)J0𠱟N#?s RQ6lÏ}YQ#֎j9x0w3|f0ʅ{q=ՙL֯0My˟ݻ1-J6P)vSy\UO'9 &~uT:APğ k(^#l17E FN=mUo(@C}?$mRPGt4 dB%HݔGI,eō5>8 RWK@l?@,JDK41D'߼AtN)n=hPQmե`Yo  o`ݘ=*^o3E1_lA uP SDd yU"Cc\C3jZh`܌Q;M\knn{jp & '9~t= Nd͊*3M;.NM Dg #0_Zڲpw^&hLIղ,g{ p4\/He)F7eٳgȴ|͝D>9<5Hp8C%v:17n"N ¸\ Ve gkI8?5N챉S[ k 4TPqp| TjF/3#"U7CM #LfzʏRvR^Cp1O]b(Ջ7S`N6Fέ~E yDlr0$MǧT%NTlܪ hDl]ġ+9/ZJ%LzQ'Cg֡<.CƉ)鷪8 NOܙ(8QzG.{wGvwUTVdRX?n;f?Kw u'r*rO1b*VTaQ!.O36|bQ*:։ '^$J.0@:eZJJ3t6PKJ!NbPa8 ;Y'1)1tvҶ`xDtEY2ed%wE7C+ 5CG%9a"0.|5S=)46ZSRΡJ%41?"-WҌie l}}}*g_(љQqJF=jR}4CA1_CR#OoY27RnĐ!`XBYHH͉A"*)8V]²={>QЎlě!pN 4֍7@\2)J}q^S {zB/ =)zKݒjJeFOlMxw0>cCd*"$VZF~CNqŐ@PJ]):biKP룠=+C(H׮>*MF5HTLKneHpH4HUsŸD;@lg&|lߢjXUNo$G%$ci'AL'*ŇPbz+VUnԄ8bIL%&]HQ+AU<4pU  jՈ 1*>yri%" aK*E[h=W}Twhi(UHd ԀD(q%APA7cDYi\ @\fI%Rl")L[g[AddVwl(bL؄% .NxAX+0=PV7ׅw[3%**1لmLYRXHTGq*f ^F ΢֡1 Fkҭӈ\ ׉C>!wd+"8OjX-S4HCns s)5lҗIuPlrbͮ{v\X廃WiNcm5ngJI'V TxjcS96qX\TvcVPb6T xjFb#R~ӨF} 7n8Iq,: (D ,^u|@zxMF6a4u։ s3Vk;pOP1qh&0-Z- vJIqw:w,hɰEOTJb|,'ym8+~'VSZP-%!N\PJZYدŔҋ;7gqőߠw1 2wT?0PķhH,!hMmĩc؛vI>h0xVĆ dD fXOt"El6҉߿-LZlJPUSa9)ĐLqKfV|XM]PCݩC҉Utg/ oԉDvт7*ҊTZĐcEt:\FPT44E8ώ#;&X,=ߦimop(Rshx bl Xq}pgV&ίm X$N/%y$ +YAd+#:0"˴z Őƨ;رNaH\P̰Lܟ_F0UrA-S=NX{le7DE'u3Iܪwn~aOteo֯ %_ ً{ RQ;n%4:g!bӐdDy Ոӊ.c`7y~~Yd]139r1BnWSY>,XLͅJY;Gɥdž"DA{@5oĮIE]^`!l/$L%ٷb-|vk(x:gA@8i5Ⱦ JBs>TF՜RA:<%p.:[[@\AժUVϏ3.gj:TOd8+ø}hQX,H@3R9kښM Wז~`B -7N_̵7NJ)nXo IUf.1~ݩ斾lMg#9N "dj(Z+/.ǪDPe*'>yr6PK{rP ]lzQڜ'~wwmIa'Lc8y\|(Z7&Cz &^VٚȏEi\Qw'$T'&AOy*OH"hIa˾]E8e{urfmK{Xj|٦eU G)6ar;# +F&c h_=K(^8ڥ4x +=!Z. @_(OŰ57cܙU]\ BvDcW 25=RZ1~/yoy}0JCf1]A D,w_[Z%S 1o^xmc CjkCeJڍb#e';hXJ )ϳm :TG!q>V#Syl`/b4§)KP/V rzL)tV׌=:vuK *p}LahNdb.BAL-$.',?XդdZsb{Xc vޢq%6,f {RSv[mL'6QLyV:0~\͊e7}_{1Z Xۥڅ[/GtIEQdQ9z)YԶ;mY5uPTJHCj]z8gyW C1#>CmN%a N«VKƦ8 ֈuV\5Y Wf{*Oen(8:8I9a>[ڵm9PhDj$fדTN0m :5\g8^/ Gr[~6f ާ$ e<-L}(fEKE Z7ZJB2KǪؗVM\a./0uLz#rI3barM yZ-U*ez']1A+RjmẅkmR R-`:`щaP)U8TIhlľ q<}l. Ca ^g>AEڏbiv=b y?j7  ]Ǭ"WDrZ R0Tض] VPDT/Eh\T{}QOݙܸH0kUÉO85)ZWjߛOlʉ #AR+qg>K4 ?ݵkry ;LPR>>lt}8mcH|'V(ӝGԞ fBi6R1*O 3`PW=^׶@du:Vqp2¾˰-2Gw{qt}wac$Rmʷ"S-PlCO!'xTbmdMiǸo"8Eشʯl'"3kOTR'Vd☭ V )ƖCo$2SuÑjtj+h9nFh-EFD^E?0,X@Cawdxs2v+מoD`&x+܃k~zG;OjGə 4wVA PírFޅaxx l["33V!$[ z"JG!N||X*Y.`*^Olc:N!Zqv0' feQێZz1Mdvm*N A47@̲OpcY i)SuVMB<tK40 ?M[aJlG-R-SV,[`,f ~;!~4]R2 ?ա)4պDXmdֈ\'z"",HRXŁn=XMv}2&r@ 7tWGڿUU$$ӉNO= j 5͗{!y_Cd>jEؚYfٸ(sf*:)\?kv86G 4cI¬xVըM Q&)FibG Bu#zIYnL}/u# z>QʷLZ>CJ%R'E['2y~̀lJ@4ݓjG_මY)c68͡ |ibOCFUHW]4s s h.F߷3+wy'9S8@R…r(` ǪgOb]mMkf4ypG1Y]IYV?WhFYRori%5]ձ2{ 4-&E+{ei 3c 1p9eT % r@;F1ň>=N%CބqIQl5+'Ic`޸ZvӠA/a? 0Q!LǢC2 S*c]|O9- SNxya18L Ak'e*O9ӗ,͗Z\j`v0|7 IةBQvc'Иl dJTnl2/~0H4D|Xϒ@5!qm҈&-2nDe6cJḜÜ DAlaAS::'璔|()J>fQ `vQKk.wݭJ{paJE4B-)"˳;{QVl$5aXގ/Q k*mad/_ DC`Ǩɴ٢a۶ѦSCU]ܜROC'bQPjj_ a㞃jrP Vo:^Uή']?=5V-a-Nb:-+)CNePt ?:5U|na+N4-3eڔ LEpkC,6N@$ 6N2 b9]mr|dDj+1lĉȺ ''HϢJ"hN|q̤"ĕMoK je&xe3cſxC/.b$rYr%(r?KODsOd/1l`Et"->ǜ:N|ذaDc9QlT.AA$@[2R 3'#P 9gˣQr?Oيgnb"LhzX?`%Dx|2[*(Rtza\8-& bzGsWtc-5x6BhdY٨O5{̦:X>)95[xJo`ަ*Fr\,"-Nw b`8qQ|ȪQ[FDSy :m;ZrZzWs{MYQ# >(2q|ܥz<^a) 6uWzs ?Y*}܏DQ'J)W*sFMjNi'O}q_$  g=iunq1of98eR,Rq ; b|DV9F Y q<54/wQN!Ω1.>'$T0-tlEQ;vOa+PbMK>IFK ;; JjvP鉚oSbס_陵 M U9M?)uKzjC̃atbΧ ]c>#V~Wsqj&>fmv?2#\SM0Y\E`O&pH%_*Dy 6 : ;mڶr$uV,z{fսhJB,ebĐnMw4&6cy P2<&"JXjCd%,TS敿T\in[kב8V !It&N z>.zzlI*b{YďQ`]CDU܃6`8dz4C#зrY|4}&8.dSlslWȰO`CaBtSCxcNJltD  ! ⇫r=U./FN\˟+4-W@`0&jK3@(!  1@@?Ib5pv۱ (mk ֶS4̆J,pcR!i Z:-jSl6 OW{8wʼn> gd l֗bPeo©b3rh4I>-*QxwpʤXby+̙&H/0¸9,\ my@0o;F0|gP,(eR©2?혀̆-ylmyIх"~NbOV[<Ѣ~tL#>-2i 9aBR4V|jdr.]u{A'b`AĖ̢<@H/VA02E' F23==fh&-M> BZ0si`8UnDx4_IZdAApb8=CD˟l7^lQ9^LcQ" ާ|U<T ek"ȭTVR_V=hgtχDiPrCX-4QQhQP; 'ᑺDDOiť@|]qm=DੑyOM"#V/l8'RgAxNdBLkHm1 8* uhPfIR,Q/q @L8LM'ωFDlx  eqbEN\vtcLN`_P(9a݁b\_R0XW12k@e }!ߑXM@XC>2ki7PS%&tq#cCXĹĩ|C0b(#nٴWӐEKӂs*ڀHam)D&8)H%h8p<7˧DN>& L՗%]\Fb,ΣH^3[q+pN:x)Ѫ=:4d NE_X`Z;El#!NK |Kn{LnI~7P>7 잖pU H1KLRQh "r$a .5w -iVTat+É!b8вF2O_c8gTkg.l$Renʼnv 0K 'FYYٓ6Jrc{°M"[,т[l`JdQe0l4_j@7#l7%Aw#5v:՘ZuMzNtrtm7?f-j В()N- -eaS.%ƺ贗,-i) gq@k 1GzJ3sʋIVRQdž%Gd"ܪN8(5 MnU؍fnaN# 2AXR# [ {1[:g!O~X \F(%ĦD'ZѵVN=UAQQy{<]˒kR!.\Z +IY{8Z> M4ˉg0h7V0l V-0qNLsN0E`7A$/>+v4aFr*ku 3!)<؃!VWq&0 JQӳ3a1'r3T8N5L JhKr}`BxRrRCoh1a{#Aa}2ka6H3<}ZΫH4 Pą!S3(;}Ģ!3>gPo;yl#?OiH;=U+IyTdQf6QHu'$՜ŧ +蹌lTȐ(5;^mf'N jOq𻧙aCjXKB9i-kwyR>-8~J"b3+SA.]f8Z8P=V{p ͟ Н3иq(LOLxP=U2٤Ge)bL_5opdb;/RCs6SK+-&(+n9Drh uzV`'c7fh* X̫)\QR.MX3_h1* ⎞d|`fah5:j"?[Gsp@Qqçm0l~uϪQk@Avvu _u͵)49 իW(=螙S>AQx'UKa $>~2v% @"@ KsT5E-r7?@{80>;& VՇn0 ZnXwξ1"P@[EjS?⾑~tߵŝܻkJł?vO΀*j'^^PS/ ; z*/="D\O~rX7Th/΀Cn*;v8P?s_w"=m(],1 87)3?.P'v6dIENDB`$$If!vh555h #v#v#vh :V 0) 6,555./ 34 ` pT$$If!vh555h #v#v#vh :V 0) 6,555./ 34 ` pT$$If!vh555h #v#v#vh :V 0) 6,555./ 34 ` pT$$If!vh555h #v#v#vh :V 0) 6,555./ 34 ` pT$$If!vh555h #v#v#vh :V 0) 6,555./ 34 ` pT$$If!vh55#v#v:V 4 0'6+,55 / 34 ` pT$$If!vh555#v#v#v:V 4 0'6+,555 / 34 ` pT$$If!vh555#v#v#v:V 0'6,555 / 34 ` pT$$If!vh555#v#v#v:V 0'6,555 / 34 ` pT$$If!vh555#v#v#v:V 0'6,555 / 34 ` pT$$If!vh555#v#v#v:V 0'6,555 / 34 ` pT$$If!vh555#v#v#v:V 0'6,555 / 34 ` pT$$If!vh555#v#v#v:V 0'6,555 / 34 ` pT$$If!vh555#v#v#v:V 0'6,555 / 34 ` pT+$$If!vh555p#v#v#vp:V 4 06++,555/ 34 ` pT7$$If!vh55<55p#v#v<#v#vp:V 4 06++,5~5L5/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TJ$$If!vh55<55p#v#v<#v#vp:V (06,5~5L55/ 34 ` p(TDyK http://www.roboblock.co.kryK 8http://www.roboblock.co.kr/DyK robotoz@hotmail.comyK 6mailto:robotoz@hotmail.com,jv&O*{>8,jv&O*{>8,jv&O*{>8,jv&O*{>8,jv&O*{>8,jv&O*{>8,jv&O*{>8,jv&O*{>8,jv&O*{>8V@V \$1$4$7$8$a$$KHOJPJ_HaJmH nHsH tH(A@( 0 } 4Bi@B \ \4 l4a $k@$] L`^`` v| ()"$dd1$4$7$8$[$\$a$CJKHOJPJQJ^J.U@. vXt|l >*B*phk8T$78Zi>? S  ;#$&(*+/4Z[_dV&45=ABCDHKMOPTWY[\`ceghloqstx{}   jm000 0 0 0 0 0 00 0 0 0 0 0 0 0 00000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00000000x8T$78Zi>? S  ;#$&(*+/4Z[_dV&45=ABCDHKMOPTWY[\`ceghloqstx{}  m@00@00@0@0E @00@00E@00@0@0@0>F\hd8@0@0@0F @00@00@00@00@00@00@00@00@00~F@0 0@0 0@0 0r| Wt@0 0@0 0@0 0@|@00@00@00A@00@00@00@@00@00@00@0@0@@0@0@0Vl@0@0@0@t\@0@0@0@0@0@0EP0@0@0@0o2| Wt@0@0@0jKAX,@0 @0 @0 @ ,A,@0"@0"@0"@ ,A,@0$0@0$0@0$0@0$0@0$@0$@0$@9 :@0&@0&@0&@0&A@0(@0(@0(@0(@@0*@0*@0*@0*T@0,@0,@0,@0,@t@0.@0.@0.@0.@@00@00@00@00@@02@02@02@02@@04@04@04@04@@06@06@06@06@@08@08@08@08@@0:@0:@0:@0:@@0<@0<@0<@0<@@0>@0>@0>@0>@@0@@0@@0@@0@@@0B@0B@0B@0B@@0D@0D@0D@0D@@0F@0F@0F@0F@@00 \bcU7 Y{ 7K09agqq`~``````````````````````aaaaa a,a-a9a:aFaGac !"#$%&'()*+,-.23456789:;<=>?@ABCDEFGHIJKLMNOPQRSTcT  VXZOQ*ThkCCCCCCXX8@0(  B S  ?+ g, ,-?mm8*urn:schemas-microsoft-com:office:smarttagsCity9*urn:schemas-microsoft-com:office:smarttagsplace x }  " mV\gm  su2#)m3333333333333333338+4[d  jmms9v`~T$78Zi>?  #$&(*+/4Z[_d&45=ABCDHKMOPTWY[\`ceghloqstx{}  m@jjjjXk`` `@`` @`@`bUnknownGz Times New Roman5Symbol3& z Arial96 |i0tGulim;|i0Batang q hFF99!"!%),.:;?]}  2 3 ! 0 0 0000 =]([\{  0 0 0000;[2[[3H)?vSRF235 Ultrasonic range finder DAVID,SHIN DAVID,SHINm +; i Z'`IZ'Oh+'0  , H T `lt| SRF235 Ultrasonic range finder  DAVID,SHIN Normal.dot DAVID,SHIN2Microsoft Word 10.0@@"u@"u՜.+,D՜.+,P  hp  robo9[  SRF235 Ultrasonic range finder $ 8@ _PID_HLINKSA Ocmailto:robotoz@hotmail.comubhttp://www.roboblock.co.kr/  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~Root Entry F >uData WK1Table?WordDocument2SummaryInformation(DocumentSummaryInformation8CompObjf  FMicrosoft Word MSWordDocWord.Document.89q