gobot icon indicating copy to clipboard operation
gobot copied to clipboard

Golang framework for robotics, drones, and the Internet of Things (IoT)

Results 200 gobot issues
Sort by recently updated
recently updated
newest added

adjustment for #815 incompatible change, but without adjust the interface

I'm currently implementing an generic temperature sensor driver for linear scaling (PT100, PTC) and NTC scaling. IMO the best way would be wrapping the AnalogSensorDriver, but the return value is...

enhancement

* add driver * add tests * add example for Tinkerboard * add driver to README

Whether Modbus protocol is supported ?

question

This issue was closed https://github.com/hybridgroup/gobot/issues/777 but I still get this ``` $GOARM=6 GOARCH=arm GOOS=linux go build go/src/gobot.io/x/gobot/examples/raspi_blink.go # github.com/gobuffalo/uuid go/src/github.com/gobuffalo/uuid/generator.go:32:13: undefined: uuid.NewV2 go/src/github.com/gobuffalo/uuid/uuid.go:41:7: undefined: uuid.V2 ``` if you trace it...

* FIX #822 * small reordering on initialization procedure according to the documentation * double the wait time after clear() according to the documentation * fix some typos, add comments

This happens sometimes and mostly can not be recovered unless power off and on the device. The root cause is the randomized stop of the used devices MCP23017 and HD44780...

bug

* fix #818 path issue similar to implementation in [beaglebone adaptor](https://github.com/hybridgroup/gobot/blob/release/platforms/beaglebone/beaglebone_adaptor.go). Introduce sysfs.Find() to avoid func in struct. * fix #818 function order problems in PWMPin(). * fix #818 naming...

Added support for PlayStation 5 Dualsense joystick. Code derived from Dualshock 4: - buttons remapped to appropriate IDs - L2 and R2 are now "axis" instead of "buttons" - New...