2017-05-29 16:24:10 +08:00
# Roadmap
This is the roadmap of what we as a community want to see happen with Gobot. It should be considered more as a statement of direction then a list of tasks.
Requests for changes to the roadmap should be made in the form of pull requests to this document.
2017-06-10 19:18:57 +08:00
Anything tied to any implementation, including requests for platform support, bug reports, or other specifics should still be made by creating a new issue here:
2017-05-29 16:24:10 +08:00
2023-05-21 21:59:39 +08:00
< https: / / github . com / hybridgroup / gobot / issues >
2017-05-29 16:24:10 +08:00
## core
- standardized logging
2017-06-10 15:11:15 +08:00
- use Context to allow for graceful exits.
2017-05-29 16:24:10 +08:00
## api
- ability to plug in your own router to handle API calls, for example to serve a custom web app.
- restrict API calls to only specific set of entrypoints.
- serve other transports/protocols other than HTTP/REST for example CoAP.
## gpio
- support for epoll/interrupt based gpio events.
- helper method for interrupts to handle "ping" timing-based devices.
- Windows 10 support.
2017-06-10 15:11:15 +08:00
- use variadic constructor functions to allow for additional params, similar to i2c drivers.
## aio
- support for epoll based aio events possible?
- Windows 10 support.
- use variadic constructor functions to allow for additional params, similar to i2c drivers.
2017-05-29 16:24:10 +08:00
2017-06-05 20:01:40 +08:00
## i2c
2023-05-21 21:59:39 +08:00
add support for the following i2c devices:
- MAG3110
- MMA8452
- T5403
- TMP006
- VCNL4000
2017-06-05 20:01:40 +08:00
2017-05-29 16:24:10 +08:00
## 1-wire
- add support for 1-wire protocol.
2017-06-05 20:01:40 +08:00
## serial
2017-05-29 16:24:10 +08:00
- create a common serial Adaptor, so different serial devices such as GPS, LIDAR etc only need to implement drivers.
2017-06-05 20:01:40 +08:00
## ble
2017-05-29 16:24:10 +08:00
- improve the ble package to allow support for multiple peripherals.
- Windows 10 support.