├── .travis.yml ├── LICENSE ├── README.md ├── docs └── librarymanager.png ├── examples ├── BME280 │ └── BME280.ino ├── CdS │ └── CdS.ino ├── FileDownload │ └── FileDownload.ino ├── FirmwareUpdate │ └── FirmwareUpdate.ino ├── GY-521 │ ├── GY-521.ino │ ├── README.md │ └── mpu6050.fzz ├── HDC1000 │ └── HDC1000.ino ├── PowerSave │ └── PowerSave.ino ├── SB412A │ └── SB412A.ino ├── SHT31 │ └── SHT31.ino ├── Shell │ ├── Shell.ino │ ├── commands.h │ ├── commands.ino │ ├── ntshell.h │ ├── ntshell │ │ ├── core │ │ │ ├── ntconf.h │ │ │ ├── ntint.h │ │ │ ├── ntlibc.c │ │ │ ├── ntlibc.h │ │ │ ├── ntshell.c │ │ │ ├── ntshell.h │ │ │ ├── text_editor.c │ │ │ ├── text_editor.h │ │ │ ├── text_history.c │ │ │ ├── text_history.h │ │ │ ├── vtrecv.c │ │ │ ├── vtrecv.h │ │ │ ├── vtsend.c │ │ │ └── vtsend.h │ │ └── util │ │ │ ├── ntopt.c │ │ │ ├── ntopt.h │ │ │ ├── ntstdio.c │ │ │ └── ntstdio.h │ ├── print.h │ └── print.ino ├── Standard │ └── Standard.ino └── double2float │ └── double2float.ino ├── library.properties └── src ├── SakuraIO.cpp ├── SakuraIO.h ├── SakuraIO ├── commands.h └── debug.h ├── SakuraIOAlphaCompat.cpp ├── SakuraIOAlphaCompat.h ├── SakuraIOUtils.cpp ├── SakuraIOUtils.h ├── SakuraIO_I2C.cpp └── SakuraIO_SPI.cpp /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/README.md -------------------------------------------------------------------------------- /docs/librarymanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/docs/librarymanager.png -------------------------------------------------------------------------------- /examples/BME280/BME280.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/BME280/BME280.ino -------------------------------------------------------------------------------- /examples/CdS/CdS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/CdS/CdS.ino -------------------------------------------------------------------------------- /examples/FileDownload/FileDownload.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/FileDownload/FileDownload.ino -------------------------------------------------------------------------------- /examples/FirmwareUpdate/FirmwareUpdate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/FirmwareUpdate/FirmwareUpdate.ino -------------------------------------------------------------------------------- /examples/GY-521/GY-521.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/GY-521/GY-521.ino -------------------------------------------------------------------------------- /examples/GY-521/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/GY-521/README.md -------------------------------------------------------------------------------- /examples/GY-521/mpu6050.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/GY-521/mpu6050.fzz -------------------------------------------------------------------------------- /examples/HDC1000/HDC1000.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/HDC1000/HDC1000.ino -------------------------------------------------------------------------------- /examples/PowerSave/PowerSave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/PowerSave/PowerSave.ino -------------------------------------------------------------------------------- /examples/SB412A/SB412A.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/SB412A/SB412A.ino -------------------------------------------------------------------------------- /examples/SHT31/SHT31.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/SHT31/SHT31.ino -------------------------------------------------------------------------------- /examples/Shell/Shell.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/Shell.ino -------------------------------------------------------------------------------- /examples/Shell/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/commands.h -------------------------------------------------------------------------------- /examples/Shell/commands.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/commands.ino -------------------------------------------------------------------------------- /examples/Shell/ntshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell.h -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/ntconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/ntconf.h -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/ntint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/ntint.h -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/ntlibc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/ntlibc.c -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/ntlibc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/ntlibc.h -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/ntshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/ntshell.c -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/ntshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/ntshell.h -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/text_editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/text_editor.c -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/text_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/text_editor.h -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/text_history.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/text_history.c -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/text_history.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/text_history.h -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/vtrecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/vtrecv.c -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/vtrecv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/vtrecv.h -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/vtsend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/vtsend.c -------------------------------------------------------------------------------- /examples/Shell/ntshell/core/vtsend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/core/vtsend.h -------------------------------------------------------------------------------- /examples/Shell/ntshell/util/ntopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/util/ntopt.c -------------------------------------------------------------------------------- /examples/Shell/ntshell/util/ntopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/util/ntopt.h -------------------------------------------------------------------------------- /examples/Shell/ntshell/util/ntstdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/util/ntstdio.c -------------------------------------------------------------------------------- /examples/Shell/ntshell/util/ntstdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/ntshell/util/ntstdio.h -------------------------------------------------------------------------------- /examples/Shell/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/print.h -------------------------------------------------------------------------------- /examples/Shell/print.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Shell/print.ino -------------------------------------------------------------------------------- /examples/Standard/Standard.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/Standard/Standard.ino -------------------------------------------------------------------------------- /examples/double2float/double2float.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/examples/double2float/double2float.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/library.properties -------------------------------------------------------------------------------- /src/SakuraIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/src/SakuraIO.cpp -------------------------------------------------------------------------------- /src/SakuraIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/src/SakuraIO.h -------------------------------------------------------------------------------- /src/SakuraIO/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/src/SakuraIO/commands.h -------------------------------------------------------------------------------- /src/SakuraIO/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/src/SakuraIO/debug.h -------------------------------------------------------------------------------- /src/SakuraIOAlphaCompat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/src/SakuraIOAlphaCompat.cpp -------------------------------------------------------------------------------- /src/SakuraIOAlphaCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/src/SakuraIOAlphaCompat.h -------------------------------------------------------------------------------- /src/SakuraIOUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/src/SakuraIOUtils.cpp -------------------------------------------------------------------------------- /src/SakuraIOUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/src/SakuraIOUtils.h -------------------------------------------------------------------------------- /src/SakuraIO_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/src/SakuraIO_I2C.cpp -------------------------------------------------------------------------------- /src/SakuraIO_SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakuraio/SakuraIOArduino/HEAD/src/SakuraIO_SPI.cpp --------------------------------------------------------------------------------