Skip to main content

SIMs

I have been using SIM cards from several different MVNOs. Tello, RedPocket, and IoTDataWorks.

Tello is a T-Mobile MVNO. Previously they were with Sprint. They have a monthly plan with 500MB of LTE speed data and unlimited SMS for $5. After the 500MB it drops to 2G speeds. This plan has no voice minutes. It also has no taxes added. They do charge $10 for the SIM card.

RedPocket is an MVNO for T-Mobile/Sprint, AT&T and Verizon. I have an AT&T SIM on the $60 a year 500MB/100minutes/100SMS per month for 12 months plan. I also have a T-Mobile SIM on the $30 a year 200MB/200minutes/1000SMS per month for 12 months plan. You can only find these plans on eBay. Once you use up your data for the month it is cut off until the next month cycle.

The IoTDataWorks SIM is meant for IoT devices. It has no voice or SMS, only data. I have the 1 year unlimited 64kbps SIM, which is on T-Mobile. It was $40 on Amazon when I purchased it. The price has gone up to $45 last time I checked.

All of these work fine, data/voice/SMS work as expected (or not where it is not part of the plan). I have moved them between PinePhones. The correct working APN automatically appears in setup. I am primarily using Manjaro Phosh, Arch Linux ARM and Mobian.

IoTDataWorks SIM idle activity

Popular posts from this blog

veracrypt

I installed veracrypt on some of my PinePhones. There are no pre-compiled binaries for aarch64. Installation is from source. The process is simple and mostly follows the instructions on git . This has been tested on Manjaro Phosh and Arm Arch Linux. I compiled it as a cli only application. If you omit the NOGUI=1 it will compile the version with both cli/gui. It takes much longer to compile and the interface is not optimized for a mobile device. Install the required packages sudo pacman -S fuse2 yasm cppunit pkg-config Download the source for wxWidgets . The current stable is v3.0.5. wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.0.5/wxWidgets-3.0.5.tar.bz2 Extract and move to /usr/src tar -xf wxWidgets-3.0.5.tar.bz2 sudo mv wxWidgets-3.0.5 /usr/src/ Download the current stable veracrypt source wget https://github.com/veracrypt/VeraCrypt/archive/refs/tags/VeraCrypt_1.24-Update7.tar.gz Extract the files and change to the src directory tar -xf VeraCrypt_1.24-Update7.t...

Updating modem firmware

Updated to the latest available firmware. Instructions here: https://github.com/Biktorgj/quectel_eg25_recovery#readme Command to clone the latest branch:   git clone --branch EG25GGBR07A08M2G_01.003.01.003 https://github.com/Biktorgj/quectel_eg25_recovery.git Change directory and run update: cd quectel_eg25_recovery/ sudo ./qfirehose -f ./ To check the currently installed firmware: sudo mmcli -m any --command='AT+QGMR' Output of the entire process here: https://gist.github.com/8bitgc/247da58dd6bd53a6864d5afe091616c5

Franken-Phone

I decided to take the worst performing PinePhone PCB and turn it into a hardware test bed. This is the 3GB 1.2b upgrade board that fails my compiler and memtester tests . It will time jump even with the RAM running at 492MHz. It is usable. With the serial adapter you can login to the serial console without an attached screen. Once WiFi/SSH is configured you can do everything remotely. I have also used wayvnc to remotely connect to the graphical desktop. I bought a large flat aluminum heatsink from Amazon to use as a base. I cut up a sheet of thermal pad material (sold for use with 3d printer glass hot beds). The pad is sticky and holds the PCB and battery to the heatsink. The battery is not the correct type/size for a PinePhone battery. It is an old battery I found in a drawer that has the same pinout, works fine. The micro USB breakout board has the VBUS and Ground soldered directly to the pogo pin pads. The loose orange wire at the bottom is soldered to a tiny pad next to the ke...