All posts by James Moore

WiFi Express Adapter Model Number: F8277

WiFi Adapter

WiFi Adapter

I took a minor gamble this week and ordered a “WiFi Express Adapter Model Number: F8277.” This is an unbranded USB Ethernet adapter that looks suspiciously like an Apple USB Ethernet adapter, but also works like an Airport Express (minus the audio out and printer/drive sharing).

I have unpacked, but have not tested the device. The printed instructions are not particularly illuminating:

WiFi Adapter Screenshot

WiFi Adapter Screenshot

Good to know use in the Pub is expected…

 

 

Resuscitating (and repurposing) the old Nokia N900

Nokia N900

Nokia N900

I migrated to an Apple iPhone 5 a while back. Even though the ‘phone is lacking a keyboard (which my old Nokia N900 had) I am fairly happy with the device. However,  I sort of need for a portable speaker, and rather than buy a Jawbone JAMBOX (or equivalent) I think I can repurpose the N900.

Over on Maemo.org Sabrog has a useful piece of script for activating the earphone socket as a line-in:

Speaker ON

#!/bin/sh
amixer -c0 set PCM 100%
amixer -c0 set 'Right PGA Bypass Mixer HP Switc' on
amixer -c0 set 'Left PGA Bypass Mixer HP' on
amixer -c0 set 'Left PGA Mixer Line1L' on
amixer -c0 set 'Left PGA Mixer Line2L' on
amixer -c0 set 'HP PGA Bypass' 100%
amixer -c0 set 'Speaker Function' On
echo "Speaker is ON"

Speaker OFF

#!/bin/sh
amixer -c0 set PCM 100%
amixer -c0 set 'Right PGA Bypass Mixer HP Switc' off
amixer -c0 set 'Left PGA Bypass Mixer HP' off
amixer -c0 set 'Left PGA Mixer Line1L' off
amixer -c0 set 'Left PGA Mixer Line2L' off
amixer -c0 set 'HP PGA Bypass' 0%
echo "Speaker is OFF"

Thanks Sabrog!