Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added package require Tcl 6.6 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c732f972104a0ab41d53da25741e408e |
User & Date: | gwlester 2018-02-07 02:15:00 |
Context
2018-02-07
| ||
21:53 | Reorganize prohect directories. check-in: 1ae81b7c1b user: gwlester tags: trunk | |
02:15 | Added package require Tcl 6.6 check-in: c732f97210 user: gwlester tags: trunk | |
2018-02-06
| ||
22:46 | Corrected typos check-in: 553977a1bf user: gwlester tags: trunk | |
Changes
Changes to bno055-1.0.0.tm.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## ## Provides a ensemble for low level access a Bosch Sensortec BNO055 Intelligent ## 9-axis absolute orientation sensor. The Data Sheet for this sensor is at: ## https://www.mouser.com/pdfdocs/BST_BNO055_DS000_14.pdf ## ## This sensor can appear at the following addresses: ## I2C: 0x29 (primary) or 0x28 (alternate) ## HID-I2C: 0x40 ## ## Please see sction 4.6 of the Data Sheet for details of selecting the address. ## package provide bno055 1.0.0 package require piio namespace eval bno055 { ## ## Register definition format: page address b(yte)|w(word) ?highBit:lowBit? ## least significant bit is 0. | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## ## Provides a ensemble for low level access a Bosch Sensortec BNO055 Intelligent ## 9-axis absolute orientation sensor. The Data Sheet for this sensor is at: ## https://www.mouser.com/pdfdocs/BST_BNO055_DS000_14.pdf ## ## This sensor can appear at the following addresses: ## I2C: 0x29 (primary) or 0x28 (alternate) ## HID-I2C: 0x40 ## ## Please see sction 4.6 of the Data Sheet for details of selecting the address. ## package require Tcl 8.6 package provide bno055 1.0.0 package require piio namespace eval bno055 { ## ## Register definition format: page address b(yte)|w(word) ?highBit:lowBit? ## least significant bit is 0. |
︙ | ︙ |
Changes to dimu-1.0.0.tm.
1 2 3 4 5 6 7 8 9 10 | ## ## Provide a singlton class for the Dexter Industries Inertial Motion Unit (IMU) sensor. ## package require piio package require bno055 package require oo::util ::ooutil::singleton create dimu { #self mixin singleton | > | 1 2 3 4 5 6 7 8 9 10 11 | ## ## Provide a singlton class for the Dexter Industries Inertial Motion Unit (IMU) sensor. ## package require Tcl 8.6 package require piio package require bno055 package require oo::util ::ooutil::singleton create dimu { #self mixin singleton |
︙ | ︙ |