Skip to content

Commit 27d0b21

Browse files
authored
doc: update links to release or tagged branch (hybridgroup#1069)
1 parent d76143c commit 27d0b21

File tree

47 files changed

+116
-118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+116
-118
lines changed

CONTRIBUTING.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ Descriptions for each of these will eventually be provided below.
2929

3030
## General Guidelines
3131

32-
* All active development is in the `dev` branch. New or updated features must be added to the `dev` branch. Hotfixes
33-
will be considered on the `master` branch in situations where it does not alter behavior or features, only fixes a bug.
32+
* All active development is in the `dev` branch. New or updated features must be added to the `dev` branch.
3433
* All patches must be provided under the Apache 2.0 License
3534
* Please use the -S option in git to "sign off" that the commit is your work and you are providing it under the
3635
Apache 2.0 License
@@ -142,4 +141,4 @@ Gobot is released with a Contributor Code of Conduct. By participating in this p
142141

143142
## Origins
144143

145-
This document is based on the original [io.js contribution guidelines](https://github.com/nodejs/io.js/blob/master/CONTRIBUTING.md)
144+
This document is based on the original [io.js contribution guidelines](https://github.com/nodejs/io.js/blob/main/CONTRIBUTING.md)

README.md

+51-51
Large diffs are not rendered by default.

api/basic_auth.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
// BasicAuth returns basic auth handler.
1010
func BasicAuth(username, password string) http.HandlerFunc {
11-
// Inspired by https://github.com/codegangsta/martini-contrib/blob/master/auth/
11+
// Inspired by https://github.com/codegangsta/martini-contrib/tree/v0.1/auth
1212
return func(res http.ResponseWriter, req *http.Request) {
1313
if !secureCompare(req.Header.Get("Authorization"),
1414
"Basic "+base64.StdEncoding.EncodeToString([]byte(username+":"+password)),

drivers/aio/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Installing:
66
Please refer to the main [README.md](https://github.com/hybridgroup/gobot/blob/release/README.md)
77
88
For further information refer to aio README:
9-
https://github.com/hybridgroup/gobot/blob/master/platforms/aio/README.md
9+
https://github.com/hybridgroup/gobot/blob/release/platforms/aio/README.md
1010
*/
1111
package aio // import "gobot.io/x/gobot/v2/drivers/aio"

drivers/ble/sphero/doc.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Package sphero provides the Gobot drivers for the Sphero BLE based platforms.
33
44
For further information refer to sphero readme files:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/sphero/bb8/README.md
6-
https://github.com/hybridgroup/gobot/blob/master/platforms/sphero/ollie/README.md
7-
https://github.com/hybridgroup/gobot/blob/master/platforms/sphero/sprkplus/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/sphero/bb8/README.md
6+
https://github.com/hybridgroup/gobot/blob/release/platforms/sphero/ollie/README.md
7+
https://github.com/hybridgroup/gobot/blob/release/platforms/sphero/sprkplus/README.md
88
*/
99
package sphero // import "gobot.io/x/gobot/v2/drivers/ble/sphero"

drivers/common/spherocommon/spherocommon_packets.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
package spherocommon
22

33
// LocatorConfig provides configuration for the Location api.
4-
// https://github.com/orbotix/DeveloperResources/blob/master/docs/Sphero_API_1.50.pdf
4+
// For more information refer to the api specification of "Orbotix Communication API"
5+
// see also: http://wiki.mark-toma.com/view/Sphero_API_Tutorial
56
// The current (X,Y) coordinates of Sphero on the ground plane in centimeters.
67
type LocatorConfig struct {
78
// Determines whether calibrate commands automatically correct the yaw tare value
@@ -15,8 +16,8 @@ type LocatorConfig struct {
1516
}
1617

1718
// CollisionConfig provides configuration for the collision detection alogorithm.
18-
// For more information refer to the official api specification
19-
// https://github.com/orbotix/DeveloperResources/blob/master/docs/Collision%20detection%201.2.pdf.
19+
// For more information refer to the api specification of "Orbotix Communication API"
20+
// see also: http://wiki.mark-toma.com/view/Sphero_API_Tutorial
2021
type CollisionConfig struct {
2122
// Detection method type to use. Methods 01h and 02h are supported as
2223
// of FW ver 1.42. Use 00h to completely disable this service.
@@ -39,8 +40,8 @@ type CollisionConfig struct {
3940
}
4041

4142
// DataStreamingConfig provides configuration for Sensor Data Streaming.
42-
// For more information refer to the official api specification
43-
// https://github.com/orbotix/DeveloperResources/blob/master/docs/Sphero_API_1.50.pdf page 28
43+
// For more information refer to the api specification of "Orbotix Communication API"
44+
// see also: http://wiki.mark-toma.com/view/Sphero_API_Tutorial
4445
type DataStreamingConfig struct {
4546
// Divisor of the maximum sensor sampling rate
4647
N uint16

drivers/gpio/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Installing:
66
Please refer to the main [README.md](https://github.com/hybridgroup/gobot/blob/release/README.md)
77
88
For further information refer to gpio README:
9-
https://github.com/hybridgroup/gobot/blob/master/platforms/gpio/README.md
9+
https://github.com/hybridgroup/gobot/blob/release/platforms/gpio/README.md
1010
*/
1111
package gpio // import "gobot.io/x/gobot/v2/drivers/gpio"

drivers/i2c/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Installing:
66
Please refer to the main [README.md](https://github.com/hybridgroup/gobot/blob/release/README.md)
77
88
For further information refer to i2c README:
9-
https://github.com/hybridgroup/gobot/blob/master/drivers/i2c/README.md
9+
https://github.com/hybridgroup/gobot/blob/release/drivers/i2c/README.md
1010
*/
1111
package i2c // import "gobot.io/x/gobot/v2/drivers/i2c"

drivers/i2c/grovepi_driver.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const grovePiDefaultAddress = 0x04
1414

1515
// commands, see:
1616
// * https://www.dexterindustries.com/GrovePi/programming/grovepi-protocol-adding-custom-sensors/
17-
// * https://github.com/DexterInd/GrovePi/blob/master/Script/multi_grovepi_installer/grovepi4.py
17+
// * https://github.com/DexterInd/GrovePi/tree/1.3.0/Script/multi_grovepi_installer/grovepi4.py
1818
const (
1919
commandReadDigital = 1
2020
commandWriteDigital = 2
@@ -30,7 +30,7 @@ const (
3030
// https://www.dexterindustries.com/grovepi/
3131
//
3232
// To use this driver with the GrovePi, it must be running the firmware >= 1.4.0 and the system version >=3.
33-
// https://github.com/DexterInd/GrovePi/blob/master/README.md
33+
// https://github.com/DexterInd/GrovePi/tree/1.3.0/README.md
3434
type GrovePiDriver struct {
3535
*Driver
3636
pins map[int]string

drivers/i2c/mpl115a2_driver_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func TestMPL115A2ReadData(t *testing.T) {
5151
// * shift the temperature value right for 6 bits (resolution is 10 bit)
5252
// * shift the pressure value right for 6 bits (resolution is 10 bit)
5353
// * calculate temperature in °C according to this implementation:
54-
// https://github.com/adafruit/Adafruit_MPL115A2/blob/master/Adafruit_MPL115A2.cpp
54+
// https://github.com/adafruit/Adafruit_MPL115A2/tree/2.0.2/Adafruit_MPL115A2.cpp
5555
//
5656
// arrange
5757
d, a := initTestMPL115A2DriverWithStubbedAdaptor()

drivers/i2c/sht2x_driver.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ const (
4343
// Power on default is 0/0
4444
SHT2xAccuracyHigh = byte(0x00)
4545

46-
// SHT2xTriggerTempMeasureHold is the command for measureing temperature in hold master mode
46+
// SHT2xTriggerTempMeasureHold is the command for measuring temperature in hold controller mode
4747
SHT2xTriggerTempMeasureHold = 0xe3
4848

49-
// SHT2xTriggerHumdMeasureHold is the command for measureing humidity in hold master mode
49+
// SHT2xTriggerHumdMeasureHold is the command for measuring humidity in hold controller mode
5050
SHT2xTriggerHumdMeasureHold = 0xe5
5151

52-
// SHT2xTriggerTempMeasureNohold is the command for measureing humidity in no hold master mode
52+
// SHT2xTriggerTempMeasureNohold is the command for measuring humidity in no hold controller mode
5353
SHT2xTriggerTempMeasureNohold = 0xf3
5454

55-
// SHT2xTriggerHumdMeasureNohold is the command for measureing humidity in no hold master mode
55+
// SHT2xTriggerHumdMeasureNohold is the command for measuring humidity in no hold controller mode
5656
SHT2xTriggerHumdMeasureNohold = 0xf5
5757

5858
// SHT2xWriteUserReg is the command for writing user register

drivers/serial/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package serial provides Gobot drivers for Serial Port communication based devices.
33
44
For further information refer to readme:
5-
https://github.com/hybridgroup/gobot/blob/master/drivers/serial/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/drivers/serial/README.md
66
*/
77
package serial // import "gobot.io/x/gobot/v2/drivers/serial"

drivers/spi/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Installing:
66
Please refer to the main [README.md](https://github.com/hybridgroup/gobot/blob/release/README.md)
77
88
For further information refer to spi README:
9-
https://github.com/hybridgroup/gobot/blob/master/drivers/spi/README.md
9+
https://github.com/hybridgroup/gobot/blob/release/drivers/spi/README.md
1010
*/
1111
package spi // import "gobot.io/x/gobot/v2/drivers/spi"

platforms/audio/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package audio provides the Gobot adaptor for audio.
33
44
For more information refer to the README:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/audio/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/audio/README.md
66
*/
77
package audio // import "gobot.io/x/gobot/v2/platforms/audio"

platforms/beaglebone/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ Example:
4242
}
4343
4444
For more information refer to the beaglebone README:
45-
https://github.com/hybridgroup/gobot/blob/master/platforms/beaglebone/README.md
45+
https://github.com/hybridgroup/gobot/blob/release/platforms/beaglebone/README.md
4646
*/
4747
package beaglebone // import "gobot.io/x/gobot/v2/platforms/beaglebone"

platforms/bleclient/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package bleclient provides the Gobot client adaptor for Bluetooth LE.
33
44
For more information refer to the README:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/bleclient/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/bleclient/README.md
66
*/
77
package bleclient // import "gobot.io/x/gobot/v2/platforms/bleclient"

platforms/chip/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package chip contains the Gobot adaptor for the CHIP and CHIP Pro
33
44
For further information refer to the chip README:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/chip/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/chip/README.md
66
*/
77
package chip // import "gobot.io/x/gobot/v2/platforms/chip"

platforms/dexter/dexter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ This package currently supports the following robots:
55
- GoPiGo3
66
77
For further information refer to Dexter README:
8-
https://gobot.io/x/gobot/v2/blob/master/platforms/dexter/README.md
8+
https://github.com/hybridgroup/gobot/blob/release/platforms/dexter/README.md
99
*/
1010
package dexter

platforms/digispark/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ Example:
4444
}
4545
4646
For further information refer to digispark README:
47-
https://github.com/hybridgroup/gobot/blob/master/platforms/digispark/README.md
47+
https://github.com/hybridgroup/gobot/blob/release/platforms/digispark/README.md
4848
*/
4949
package digispark // import "gobot.io/x/gobot/v2/platforms/digispark"

platforms/dragonboard/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package dragonboard contains the Gobot adaptor for the DragonBoard 410c
33
44
For further information refer to the chip README:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/dragonboard/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/dragonboard/README.md
66
*/
77
package dragonboard // import "gobot.io/x/gobot/v2/platforms/dragonboard"

platforms/firmata/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ Example:
4141
}
4242
4343
For further information refer to firmata readme:
44-
https://github.com/hybridgroup/gobot/blob/master/platforms/firmata/README.md
44+
https://github.com/hybridgroup/gobot/blob/release/platforms/firmata/README.md
4545
*/
4646
package firmata // import "gobot.io/x/gobot/v2/platforms/firmata"

platforms/intel-iot/curie/README.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -69,29 +69,27 @@ func main() {
6969
)
7070

7171
if err := robot.Start(); err != nil {
72-
panic(err)
73-
}
72+
panic(err)
73+
}
7474
}
7575
```
7676

7777
## How to Connect
7878

7979
### Installing Firmware
8080

81-
You need to flash your Intel Curie with firmware that uses ConfigurableFirmata along with the FirmataCurieIMU plugin. There are 2 versions of this firmware, once that allows connecting using the serial interface, the other using a Bluetooth LE connection.
81+
You need to flash your Intel Curie with firmware that uses ConfigurableFirmata along with the FirmataCurieIMU plugin.
82+
There are 2 versions of this firmware, once that allows connecting using the serial interface, the other using a
83+
Bluetooth LE connection.
8284

8385
To setup your Arduino environment:
8486

8587
- Install the latest Arduino, if you have not done so yet.
8688
- Install the "Intel Curie Boards" board files using the "Board Manager". You can find it in the Arduino IDE under the
8789
"Tools" menu. Choose "Boards > Boards Manager".
8890
- Search for the "Intel Curie Boards" package in the "Boards Manager" dialog, and then install the latest version.
89-
- Download the ZIP file for the ConfigurableFirmata library. You can download the latest version of the ConfigurableFirmata
90-
from here:
91-
[https://github.com/firmata/ConfigurableFirmata/archive/master.zip](https://github.com/firmata/ConfigurableFirmata/archive/master.zip)
92-
Once you have downloaded ConfigurableFirmata, install it by using the "Library Manager". You can find it in the Arduino
93-
IDE under the "Sketch" menu. Choose "Include Library > Add .ZIP Library". Select the ZIP file for the ConfigurableFirmata
94-
library that you just downloaded.
91+
- Follow the [installation instructions](https://github.com/firmata/ConfigurableFirmata#installation) for the
92+
ConfigurableFirmata library
9593
- Download the ZIP file for the FirmataCurieIMU library. You can download the latest version of FirmataCurieIMU from here:
9694
[https://github.com/intel-iot-devkit/firmata-curie-imu/archive/master.zip](https://github.com/intel-iot-devkit/firmata-curie-imu/archive/master.zip)
9795
- Once you have downloaded the FirmataCurieIMU library, install it by using the "Library Manager". You can find it in the

platforms/intel-iot/curie/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package curie contains the Gobot driver for the Intel Curie IMU.
33
44
For further information refer to intel-iot README:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/intel-iot/curie/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/intel-iot/curie/README.md
66
*/
77
package curie // import "gobot.io/x/gobot/v2/platforms/intel-iot/curie"

platforms/intel-iot/edison/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package edison contains the Gobot adaptor for the Intel Edison.
33
44
For further information refer to intel-iot README:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/intel-iot/edison/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/intel-iot/edison/README.md
66
*/
77
package edison // import "gobot.io/x/gobot/v2/platforms/intel-iot/edison"

platforms/intel-iot/intel-iot.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ This package currently supports the following Intel IoT hardware:
66
- Intel Joule developer kit
77
88
For further information refer to intel-iot README:
9-
https://gobot.io/x/gobot/v2/blob/master/platforms/intel-iot/README.md
9+
https://github.com/hybridgroup/gobot/blob/release/platforms/intel-iot/README.md
1010
*/
1111
package inteliot

platforms/intel-iot/joule/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package joule contains the Gobot adaptor for the Intel Joule.
33
44
For further information refer to intel-iot README:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/intel-iot/joule/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/intel-iot/joule/README.md
66
*/
77
package joule // import "gobot.io/x/gobot/v2/platforms/intel-iot/joule"

platforms/jetson/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package jetson contains the Gobot adaptor for the Jetson Nano.
33
44
For further information refer to Jetson README:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/jetson/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/jetson/README.md
66
*/
77
package jetson // import "gobot.io/x/gobot/v2/platforms/jetson"

platforms/joystick/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ Example:
5959
}
6060
6161
For further information refer to joystick README:
62-
https://github.com/hybridgroup/gobot/blob/master/platforms/joystick/README.md
62+
https://github.com/hybridgroup/gobot/blob/release/platforms/joystick/README.md
6363
*/
6464
package joystick // import "gobot.io/x/gobot/v2/platforms/joystick"

platforms/keyboard/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ Example:
4545
}
4646
4747
For further information refer to keyboard README:
48-
https://github.com/hybridgroup/gobot/blob/master/platforms/keyboard/README.md
48+
https://github.com/hybridgroup/gobot/blob/release/platforms/keyboard/README.md
4949
*/
5050
package keyboard // import "gobot.io/x/gobot/v2/platforms/keyboard"

platforms/leap/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Example:
4040
}
4141
4242
For more information refer to the leap README:
43-
https://github.com/hybridgroup/gobot/blob/master/platforms/leap/README.md
43+
https://github.com/hybridgroup/gobot/blob/release/platforms/leap/README.md
4444
*/
4545
package leap // import "gobot.io/x/gobot/v2/platforms/leap"

platforms/mavlink/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ Example:
6565
}
6666
6767
For further information refer to mavlink README:
68-
https://github.com/hybridgroup/gobot/blob/master/platforms/mavlink/README.md
68+
https://github.com/hybridgroup/gobot/blob/release/platforms/mavlink/README.md
6969
*/
7070
package mavlink // import "gobot.io/x/gobot/v2/platforms/mavlink"

platforms/megapi/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package megapi provides the Gobot adaptor for MegaPi.
33
44
For more information refer to the README:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/megapi/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/megapi/README.md
66
*/
77
package megapi // import "gobot.io/x/gobot/v2/platforms/megapi"

platforms/mqtt/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Installing:
66
Please refer to the main [README.md](https://github.com/hybridgroup/gobot/blob/release/README.md)
77
88
For further information refer to mqtt README:
9-
https://github.com/hybridgroup/gobot/blob/master/platforms/mqtt/README.md
9+
https://github.com/hybridgroup/gobot/blob/release/platforms/mqtt/README.md
1010
*/
1111
package mqtt // import "gobot.io/x/gobot/v2/platforms/mqtt"

platforms/nanopi/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Package nanopi contains the Gobot adaptor for the FriendlyARM NanoPi Boards.
33
44
For further information refer to nanopi README:
5-
https://github.com/hybridgroup/gobot/blob/master/platforms/nanopi/README.md
5+
https://github.com/hybridgroup/gobot/blob/release/platforms/nanopi/README.md
66
*/
77
package nanopi // import "gobot.io/x/gobot/v2/platforms/nanopi"

platforms/nats/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ Installing:
55
Please refer to the main [README.md](https://github.com/hybridgroup/gobot/blob/release/README.md)
66
77
For further information refer to nats README:
8-
https://github.com/hybridgroup/gobot/blob/master/platforms/nats/README.md
8+
https://github.com/hybridgroup/gobot/blob/release/platforms/nats/README.md
99
*/
1010
package nats // import "gobot.io/x/gobot/v2/platforms/nats"

platforms/opencv/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ Example:
4040
}
4141
4242
For further information refer to opencv README:
43-
https://github.com/hybridgroup/gobot/blob/master/platforms/opencv/README.md
43+
https://github.com/hybridgroup/gobot/blob/release/platforms/opencv/README.md
4444
*/
4545
package opencv // import "gobot.io/x/gobot/v2/platforms/opencv"

platforms/parrot/ardrone/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ Example:
4141
}
4242
4343
For more information refer to the ardrone README:
44-
https://github.com/hybridgroup/gobot/tree/master/platforms/parrot/ardrone/README.md
44+
https://github.com/hybridgroup/gobot/blob/release/platforms/parrot/ardrone/README.md
4545
*/
4646
package ardrone // import "gobot.io/x/gobot/v2/platforms/parrot/ardrone"

platforms/parrot/bebop/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Installing:
66
Please refer to the main [README.md](https://github.com/hybridgroup/gobot/blob/release/README.md)
77
88
For more information refer to the bebop README:
9-
https://github.com/hybridgroup/gobot/tree/master/platforms/parrot/bebop/README.md
9+
https://github.com/hybridgroup/gobot/blob/release/platforms/parrot/bebop/README.md
1010
*/
1111
package bebop // import "gobot.io/x/gobot/v2/platforms/parrot/bebop"

platforms/particle/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ Example:
4141
}
4242
4343
For further information refer to Particle readme:
44-
https://github.com/hybridgroup/gobot/blob/master/platforms/particle/README.md
44+
https://github.com/hybridgroup/gobot/blob/release/platforms/particle/README.md
4545
*/
4646
package particle // import "gobot.io/x/gobot/v2/platforms/particle"

0 commit comments

Comments
 (0)