UI Example - Radio Buttons for Pixl.js
Source Code
// ----- setup lon and log() (considering emulating _eConsole)
var lon = true // logging is on / off
, log = function() { if (lon) { var lgr;(lgr=(typeof _eConsole
=="object")?_eConsole:console).log.apply(lgr,arguments);}};
// ----- pull in ui base and ui element(s) - (..._U = uncommented)
var ui = require("ui") // basic module _U(ncommented)
.adx(require("uiExt"),-1,"uiExt") // basic extension
.adx(require("uiEBC"),-1,"uiEBC") // button controlled ui extension
.adx(require("uiRad"),-1,"uiRad") // ui radio button element
.adx(require("Font6x8"),-2,"Font6x8") // pixl suitable small bitmap font
;
// define Pixl Button 'clazz'
var uiPBt = function(btn,downCb,upCb,debounce) {
var t=0;
setWatch( function(e){ if (! t) { t=Math.round(e.time*1000); if (downCb) downCb(t); }}
, btn, {edge:"rising" ,repeat:true, debounce:debounce} );
setWatch( function(e){ if ( t) { upCb(Math.round(e.time*1000)-t); t=0; }}
, btn, {edge:"falling",repeat:true,debounce:debounce} );
};
// ------- uiPBt - push button vs touch screen---------------------------
// ----- define callback(s): preferred (untouch) / generic (all) touch event(s)
var cb = function(id, v, _, e, t) { log( "id:",id,"val:",v
,(t)?((t.t)?"":"un")+"touch focused":t); }
, ca = ( (typeof ca === "undefined")
? function(id, v, _, e, t) { var s=(t.f|65536).toString(2); // log flags
log("c:",e[1],"c:",e[1],"id:",id,"v:",v,"f:",[s.substr(5,4),s.substr(9,4),s.substr(13,4)].join(" "),t.f); }
: ca )
, backlite = function(id, v, e, t) { // turn backlight on / off w/ label change
digitalWrite(LED,v); // e[11][4]=(v)?"off":"on"; // set LED and label
return false; } // return true/y in callback redraws ui elt & label(s)
, u; // for space / memory / var saving value of * undefined *
// ----- define UI (in level 0 - built to be saved)
// ---------- Radio button examples ----------
// 0 1 2 3 4 5 6 7 8 9 10 11 12
// flgs clazz id.grp x y w s bc fc valObj cb, l (label array obj)
// rad ->x2+>y2~------->[s,vOjb][g,cb,]fs tc x y label txt ca
ui.c( 3,"rad","r1.a", 0, 38, 23, 0, 0, 0, "L", cb, [ 0, 0, 3, 9, "Large"]);
ui.c( 3,"rad","r1.b", 50, 41, 17, 1, 0, 0, "M", 0 , [ 0, 0, 3, 7, "Med" ]);
ui.c( 3,"rad","r1.c", 87, 46, 11, 1, 0, 0, "S", 0 , [ 0, 0, 3, 3, "Small"]);
//----- Pixl sepcifics
var dsp = g, dspW=128, dspH=64 // ...to keep var names as usual
;
ui.bc=7; // set ui background color to white
ui.tc=0; // set ui touch color to black
ui.clrs= // set white to pixl color
[function(c,i){ var v=(i)?c^7:c; return [(v&&4)?0:1]; }.bind(ui)
];
var flp;
// ----- run UI
function onInit() {
dsp.clear(); LED.set(); // display clear and turn back light on
setTimeout(function(){
// connect ui to dsp and display it
ui.connect(dsp)
.w(0,0,dspW-1,dspH-1) // wipe screen (rect) w/ default / bg color
.d() // display all elements
.di = true // set display changes to immediate
;
flp = function(){ dsp.flip(); };
flp();
new uiPBt(BTN1,0,function(t){ui.sp();flp();}); // sel prev on BTN1
new uiPBt(BTN4,0,function(t){ui.sn();flp();}); // sel next on BTN4
new uiPBt(BTN3,0,function(t){ui.st(t+70,t);setTimeout(flp,t+140);}); // tap on BTN3
},1000);
}
setTimeout(onInit,999); // for dev only, remove before upload for save()
This page is auto-generated from GitHub. If you see any mistakes or have suggestions, please let us know.