Asian watch company = no android source code
So, we're kinda on our own here.
The device comes with a bunch of wonky software on it. The important software to get is Google Play and WatchClockSkin.
| #!/bin/bash | |
| # Yeah, it's a hack. Deal with it. | |
| # template ids are here: https://api.imgflip.com/get_memes | |
| # Usage: | |
| # memes.sh <bottom text> | |
| # memes.sh -t <top text> -m <template id> <bottom text> | |
| TEMPLATE_ID=101470 | |
| TOP_TEXT= | |
| BOTTOM_TEXT= | |
| while test $# != 0 |
The point of this document is to attempt to get people to stop shooting themselves in the foot by thinking a bit differently.
In any case, one of the "beautiful things" about the whole React+Redux community is they're totally okay with letting people shoot themselves in the foot. So, have at it, I guess, if you like that sort of thing...
There is contention on the point of treating React Action Types as things that have happened in the past.
These don't work! Because TI sucks. This is a better reference: http://wiki.thing-printer.com/index.php?title=Main_Page
My build notes for a working BBB image. This notes were written down while following:
https://eewiki.net/display/linuxonarm/BeagleBone+Black
The BPM is basically the best flashing tool for STM32/ARM chips. Get the hex file for whatever you're flashing (build it, download it, whatever), then follow these directions.
First install the arm compiler:
sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa
This thing is a bit of a beast. People don't give it NEARLY the credit, or the documentation it deserves.
Two ways of using this thing: rfcat directly, or write a python script for it.
Basically, writing a python script is easier. Using rfcat directly is great but often, there are just too many silly settings to configure
| #!/bin/bash | |
| # I needed a way to | |
| # All of this amounts to: | |
| # espeak -v en -m "<say-as interpret-as='characters'>K M 6 I D A</say-as><break strength='strong' />Software defined radio transmit test<break time='5s' />" -w callsign-plus-sdr-transmit-notice.wav | |
| CALLSIGN="KM6IDA" | |
| MESSAGE="Software defined radio transmit test" | |
| DELAY="5s" |