How I can specify the right positioning, or better, the space between then ?
My test code follows, but the sliders are far one to other.
cls
let pi1 = 2
let pi2 = 5
let pi3 = 4
let x = 0
let y = 0
let z = 0
slider x, 0, 1023
cssid htmlid(),"transform: rotate(270deg);margin: 75px;"
slider y, 0, 1023
cssid htmlid(),"transform: rotate(270deg);margin: 75px;"
slider z, 0, 1023
cssid htmlid(),"transform: rotate(270deg);margin: 75px;"
button "End",[pend]
timer 500, [set.pwm]
wait
[set.pwm]
a = 1023 - x
b = 1023 - y
c = 1023 - z
io(pwo,pi1,a)
io(pwo,pi2,b)
io(pwo,pi3,c)
wait
[pend]
timer 0
end
Thanks !