├── .gitignore ├── .travis.yml ├── README.md ├── examples ├── DeepSleep │ └── DeepSleep.ino ├── History │ └── History.ino ├── KnownAP │ └── KnownAP.ino ├── NoDebugInfo │ └── NoDebugInfo.ino ├── Simple │ └── Simple.ino └── Timer │ └── Timer.ino ├── keywords.txt ├── library.json ├── library.properties ├── src ├── Tr4cker.cpp └── Tr4cker.h ├── symlink.sh └── unsymlink.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/README.md -------------------------------------------------------------------------------- /examples/DeepSleep/DeepSleep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/examples/DeepSleep/DeepSleep.ino -------------------------------------------------------------------------------- /examples/History/History.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/examples/History/History.ino -------------------------------------------------------------------------------- /examples/KnownAP/KnownAP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/examples/KnownAP/KnownAP.ino -------------------------------------------------------------------------------- /examples/NoDebugInfo/NoDebugInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/examples/NoDebugInfo/NoDebugInfo.ino -------------------------------------------------------------------------------- /examples/Simple/Simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/examples/Simple/Simple.ino -------------------------------------------------------------------------------- /examples/Timer/Timer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/examples/Timer/Timer.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/library.properties -------------------------------------------------------------------------------- /src/Tr4cker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/src/Tr4cker.cpp -------------------------------------------------------------------------------- /src/Tr4cker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr4cker-app/tr4cker/HEAD/src/Tr4cker.h -------------------------------------------------------------------------------- /symlink.sh: -------------------------------------------------------------------------------- 1 | #/bin/bash 2 | 3 | ln -s `pwd` ~/Documents/Arduino/libraries/Tr4cker-esp8266 -------------------------------------------------------------------------------- /unsymlink.sh: -------------------------------------------------------------------------------- 1 | #/bin/bash 2 | 3 | unlink ~/Documents/Arduino/libraries/tr4cker --------------------------------------------------------------------------------