RC Plane telemetry
I never forgot my old dream- to have my own DIY telemetry system
And here after like 7 years, when technology advanced (my knowledge, also)- I have finished building my project. And my main problems are solved with two unit of ESP32 microcontrolers and Android phone. Hardware is two ESP32 units with integrated SX1278 interface and one Beitian BN-220 GPS and GLONAS receiver.
I dont realy like C programming, so my choise of microcontroller was based on availability to use other languages for programming. Initial idea was to use Espruino firmware and use Javascript language for programming. But the issue at the time of research was BLE interface was not available (Harware supports it). Other options was Micropython and LUA. I have burned Micropython firmware into ESP32
So, here is how everything works: microcontroler ESP32 read GPS receiver data, extract required informaation and… taaadaaaa…
LoRa is used to transfer data to ground unit. Once i've tested range of my LoRa equiped ESP32's units- I've received over 2.2 km LOS at 433mhz. As i'm flying my plane in line of sight- it's plenty for me.
Ground unit listend for air unit frequincy, extract data and via BLE interfaace share this information with my Android device. Device application is created using Droidscript.
Each time i'm testing something new, like programming language, i choose to build solution that would help in my life. This way I can learn more about tool, test is it suitable for me and solve my issue if I succeed.
Compile APK online
It was long time i was dreaming about ability to compile apk online. So this blog post (tutorial) will be how to prepare C9 (C9 was bought by Amazon AWS and does not really offer free containers any more) or Goorm online IDE or any similar based on ubuntu linux to be able to develop online. This should also work on local linux installation or even Windows subsystem for Linux if you are on Win10
This post will not be about “upload my zip online and get apk”. You have to set up environment in virtual server. My suggestion is go with Goorm IDE they give you up to 5 containers for free where you can set up different environment for various development things.
First of all, create new empty ubuntu box and resize it to 1Gb RAM and 5GB storage goorm gives you 1GB ram and 10GB storage out of the box. Simple APK compile stull will require about 1GB of storage, but if you decide to go on gradle dependency management system- storage will grow to 2.5GB.
Prepare your system
I prepending everyhing with sudo command, in case any permission will be missing.
So lets begin from very basic. At first you need JAVA, so add OpenJDK repository and install java
sudo add-apt-repository ppa:openjdk-r/ppa sudo apt-get update
Install Java headless, because you do not need GUI here
sudo apt-get install openjdk-8-jdk-headless
Download SDK zip from android home. You may use my provided link
wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip
Make directory for android SDK and extract ZIP
sudo mkdir -p /opt/android-sdk sudo unzip sdk-tools-linux-4333796.zip -d /opt/android-sdk
Now add environment variables to your system.
sudo nano /etc/profile
and at the very end add following lines
Always check if copying from website does not ruin you double-quotes
export ANDROID_HOME="/opt/android-sdk" export JAVA_HOME="/usr/lib/jvm/java-1.8.0-openjdk-amd64" export PATH=$JAVA_HOME/bin:$ANDROID_HOME/tools/:$ANDROID_HOME/platform-tools/:$PATH
Save and exit by pressing CTRL+X on keyboard and confirming that you want to save changes by Y. Restart your machine or environment.
Now you need to add SDK, Tools and platform stuff. I have chosen 24 version so i have used this command
sudo /opt/android-sdk/tools/bin/sdkmanager "tools" "platforms;android-24" "build-tools;24.0.3"
in case you want something else or want to see available list use sdkmanager –list command
Looks like everything is prepared, now need “Hello world!” android application. You may need to prepare it according structure and create all files or You can download this HelloAndroid project and extract in in your workspace.
Steps needs to be done to get APK file
- Generate R.java file AAPT
- Compile java file with javac
- Translate it to Dalvik Bytecode with DX
- Make apk with AAPT
- Align apk package with ZIPALIGN
- Sign your apk file with APKSIGNER
AS you can see, there is a step to sign you apk install file with certificate. You can create your own. In main project directory, the same where AndroidManifest.xml file exist, run following command to create private key:
keytool -genkeypair -validity 365 -keystore mykey.keystore -keyalg RSA -keysize 2048
Answer all questions and provide password.
Thats it. Now you can create APK file from command line. To create automated, here is prepared bash script witch you should save in project root directory (the same as android manifest) and run to build your project. I have chosen to name it make.sh
- make.sh
#!/bin/bash set -e AAPT="/opt/android-sdk/build-tools/24.0.3/aapt" DX="/opt/android-sdk/build-tools/24.0.3/dx" ZIPALIGN="/opt/android-sdk/build-tools/24.0.3/zipalign" APKSIGNER="/opt/android-sdk/build-tools/24.0.3/apksigner" PLATFORM="/opt/android-sdk/platforms/android-24/android.jar" echo "Cleaning..." rm -rf obj/* rm -rf src/in/ignas/helloandroid/R.java rm -rf bin/* echo "Generating R.java file..." $AAPT package -f -m -J src -M AndroidManifest.xml -S res -I $PLATFORM echo "Compiling..." javac -d obj -classpath src -bootclasspath $PLATFORM -source 1.7 -target 1.7 src/in/ignas/helloandroid/MainActivity.java javac -d obj -classpath src -bootclasspath $PLATFORM -source 1.7 -target 1.7 src/in/ignas/helloandroid/R.java echo "Translating in Dalvik bytecode..." $DX --dex --output=classes.dex obj echo "Making APK..." $AAPT package -f -m -F bin/hello.unaligned.apk -M AndroidManifest.xml -S res -I $PLATFORM $AAPT add bin/hello.unaligned.apk classes.dex echo "Aligning and signing APK..." $ZIPALIGN -f 4 bin/hello.unaligned.apk bin/hello.apk $APKSIGNER sign --ks mykey.keystore bin/hello.apk
In case you have used different versions in sdkmanager command- edit path in header accordingly. Just run this script with following command. If you can not run it chmod +x make.sh
./make.sh
Script will ask password for your keystore that you provided earlier.
This solution works if your application does not have any dependencies on external libs and gradle wrapper is not used. Probably, automated install script can be made but that's for another times. In case you have any suggestions, comment or anything worth to say- comment below.
Pyle PSWWM82BK review
Hello my readers. This record will be quite different from previous, as I'll try to write review for a watch.
For quite long time I wanted hi-tech type watch. For now, technologically advanced watches is Altimeter-Barometer-Compass (ABC) watches. Also, there is wrist computers (ABC, GPS, etc) but it's not intended for everyday regular use, so I did not even considered this type of watches. I've searched for ABC watch and preselected few model: Casio Casio PRG-500, Pyle PSWWM82BK, Weather master 7. Casio was little bit to expensive for me, WM7 was bulky in view. So I've chosen Pyle. Probably it's just rebranded no-name but I liked inverted LCD, nice outfit and reasonable price.
Now let's get it to the topic, where we should be.
Unboxing
Received quite nice looking hard-paper box with transparent window to watch itself.
Manual
Manual, included with this watch is written in english and french languages. It was really good written, understandable and with nice and explainable illustrations. Everything is detailed in sections. High mark for manual!
Settings up the watch
After taking watch into hands it was disabled. As understood later- it was in sleep. Just press any button and it comes to life. Great! After reading manual I've managed to set time correctly. Also set altitude above level based on GPS measurements. 30 mins. it's all what it takes to understand what is what. After that I've put manual back to box as my watch was ready for everyday use
Features
Every watch primary function is to tell it's wearer what time is it now. This clock show it in big digits on main screen. Above clock line you may see day of the week, bellow- date. Time and Date formats can be chosen, 12/24 hours and MM-DD or DD-MM as date. Year in not visible all the time. But why would you like to see current year? Watch as apparatus to tell time is perfect.
But hey, it also has some other great features: Chronograph up to 99 hours with 10 laps history, Count-Down timer from 99 hours, second time zone if you travel frequently or have any other needs to track time in different timezone. It has two different alarms and may chime hourly. This watch has thermometer- and it's accurate. But you have to take it off from hand to read surrounding temperature. Temp will be ready in about 10 minutes
Pyle PSWWM82 may read weather pressure and show it in different formats (mBar, hPa, InHg). It remembers hourly reading for 36 hours and may predict forthcoming weather by showing one of 4 icons: Sunny, Sun in clouds, Cloudy and Raining. Based on pressure reading this watch may calculate difference in altitude (with exception that weather not changing drastically). This instrument is accurate: at home I've set ground zero, got to work and in evening came back. At home it shown -1 meter. This misread was because air pressure is constantly changing. It shows min or max altitude, and total ascend and descend.
And one more great feature- compass. Nothing to much about it. Just need to calibrate it at beginning and set magnetic declination based on your location. If clock is not in horizontal position- upper line blinks to show it. Also it blinks if magnetic disturbance is detected- strong magnetic or electric field are detected. Compass works very well, easy to read and use. Oh, almost forgot- this gadget has EL panel as back-light. With EL Panel all face is light equally and easy to read in darkness. Not to bright if you just woke up at night and want to check time- it wont flash with light in your eyes.
Usability
Inverted LCD (when everything is black and digits are white) looks nice, easy to read in bright light or at home. But when it comes to quality of watch as item, I'm not so enthusiastic. Front face glass (crystal as other calls it) is probably mineral- in other words- glass. That's why care should be taken to preserve crystal from scratches. I've applied screen protector while this watch isn't scratched badly. Probably, some day I'll have to replace crystal, but as far as my quick research says- it not very trivial task. Front crystal size is 33mm- and it's quite usable format in nowadays- so your watch service technician should be able to do the job.
Plastic of band is quite hard (not even close to rubber or silicon) but I like it.
Conclusion
I've wrote this part after one month of usage
- Looks sportish
- Easy to see digits in bright sunlight and in artificial lightning.
- Night light is not to bright or to dark
- Accurate measurement and forecast
- Armband and clock is quite durable
- No noticeable time drift
I'm happy with my gadget :)
Spot-In project finished
I've just finished my second mobile application, named after Spot-In. Created using Apache Cordova1). It was quite a challenging job: I had to Create:
- UI2),
- Database structure,
- Server side software,
- Communication protocol
- Glue everything into one working software package
I've had to deal with some Android 2.1-2.3 gliches like fixed position of footer bar (in this case footer is my menu) not on the bottom of the page if you scroll down the page. Some peoples used iScroll plugin for JQuery, but i've found even better and realy simple work-a-round. Look for this hack in tutorial section. Also it was a good practice of SQL and JQuery.
Spot-In Online version
Lazy Saturday, gloomy sky. Didn't had any urgent job so I've came up with new Spot-in version. This time application released as Web version. It is read-only version with restricted functionality, for those want to use Spot-In on non-supported device (atm3): iOS, Win, etc…) Just make bookmark in prefered web browser and use it until Spot-In will be supported on your device.
Cheers
<< Newer entries | Older entries >>