I want to buy.
What do I search for (on Amazon) to find one that’s for the Electron Asset Tracker?
@douglaskbell, you need a uFL to SMA connector like this one:
and an active antenna like this one:
You can also go with this direct uFL antenna but at higher cost:
4 Likes
thanks. Ordered.
1 Like
Thanks @peekay123 for the help!
1 Like
Don’t forget to configure your code to use the external antenna:
AssetTracker t = AssetTracker();
void setup() {
t.begin();
t.gpsOn();
t.antennaExternal();
}
The call to t.externalAntenna()
must be made after t.gpsOn()
because the latter function defaults to use the internal antenna.
1 Like