USED Icom 706 MKIIG with MARS/CAP mod
SN:1501276
This radio is for serious hamming only!
Includes a Nifty manual (but not the original), remote head mounting bracket and cable, radio body mounting bracket, power cable and microphone. No original box.
Radio is in very good cosmetic condition. Minimal nicks/scratches.
No smoker smell.
Radio has been modded and will TX out of band.
Tne only issue with it is that it doesn't seem to put out more than 80-85 watts on SSB.
The IC-706MKIIG carries on the '706' series tradition of base station performance and features in a mobile rig-sized package. Building on this legacy, frequency coverage is expanded to the 70 cm band and output power is increased for the 2 m band. A long list of enhancements, both to usability and performance, as well as added features and functions have produced the latest in the evolution of the '706' series.
HF to 70 cm band coverage
Operating frequency range has been expanded to the 70 cm band. Of course, all mode operation (SSB, CW, RTTY, AM and FM) is possible and a full 100W of output power is available for HF and 6m operation; 50W for 2m and 20W for 70cm operation.
0;
},
getCacheStorage(cacheKey) {
const storage = JSON.parse(hyva.getBrowserStorage().getItem(localStorageNamespace)) || {};
return storage[cacheKey] || null;
},
saveCacheStorage(products) {
let storage = JSON.parse(hyva.getBrowserStorage().getItem(localStorageNamespace)) || {};
storage = this.enforceLocalStorageLimits(storage);
storage[this.getCacheKey()] = {
'product_list': products,
'added_at': new Date().getTime()
};
hyva.getBrowserStorage().setItem(localStorageNamespace, JSON.stringify(storage));
},
getProductsFromCache() {
const products = this.getCacheStorage(this.getCacheKey());
if (products !== null && this.validateCacheLifetime(products)) {
return products.product_list;
}
return null;
},
loadProductsFromServer() {
if (this.isLoading) {
return;
}
this.isLoading = true;
return fetch(this.ajaxData.url + '?' + this.buildQueryString(this.ajaxData.originalRequest), {
'headers': {
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
},
'method': 'GET'
})
.then(response => response.json())
.then(data => {
if (!data.status) {
this.saveCacheStorage([]);
return;
}
this.products = Object.values(data.productList);
this.saveCacheStorage(data.productList);
window.dispatchEvent(new CustomEvent('also-bough-products-loaded'));
})
.catch(function (error) {
typeof window.dispatchMessages !== 'undefined' && window.dispatchMessages(
[{
type: 'error',
text: error
}], 5000
);
}).finally(() => this.isLoading = false);
},
validateCacheLifetime(products) {
return new Date().getTime() - products.added_at < this.ajaxData.cache_lifetime * 1000;
},
getCacheKey() {
const originalRequest = this.ajaxData.originalRequest;
return originalRequest.action + '_' + originalRequest.entity_id;
},
buildQueryString(params) {
const queryStringArray = [];
for (const key in params) {
if (params.hasOwnProperty(key)) {
const value = params[key];
if (Array.isArray(value)) {
value.forEach((item, index) => {
queryStringArray.push(this.buildQueryString({ [key + '[' + index + ']']: item }));
});
} else if (typeof value === 'object' && value !== null) {
queryStringArray.push(this.buildQueryString(value));
} else {
queryStringArray.push(`${encodeURIComponent(key)}=${encodeURIComponent(value)}`);
}
}
}
return queryStringArray.join('&');
},
enforceLocalStorageLimits(storage) {
if (Object.keys(storage).length >= localStorageLimit) {
const newStorage = Object.entries(storage);
newStorage.sort((a, b) => new Date(b[1].added_at) - new Date(a[1].added_at));
return Object.fromEntries(newStorage.slice(0, localStorageLimit - 1))
}
return storage;
}
}
}
Customers who bought this item also bought