This guide walks you through the various ways to program your Moteinos. It includes details about any extra hardware required.

';
html += '
' + product.name + '
';
if (product.special) {
html += '
Buy: ' + product.price + 'Special: ' + product.special + '
';
} else {
html += '
Buy: ' + product.price + '
';
}
//html += '
';
html += '';
});
html += ' ';
html += '
';
$("article").after(html);
}
},
error: function( jqXHR, textStatus, errorThrown ) {
var err = errorThrown;
}
});
});