Difference between revisions of "Activities/Butialo"

From Sugar Labs
Jump to navigation Jump to search
Line 44: Line 44:
 
   
 
   
 
  while true do
 
  while true do
print ("Presione el botón para comenzar")
+
    print ("Presione el botón para comenzar")
repeat until Boton.getBoton()==1
+
    repeat until Boton.getBoton()==1
+
 
eq = Dist.getDistancia()  
+
    eq = Dist.getDistancia()  
+
 
print("Arrancando", eq)
+
    print("Arrancando", eq)
util.wait(1)
+
    util.wait(1)
+
 
repeat
+
    repeat
d = Dist.getDistancia()
+
        d = Dist.getDistancia()
v = 100+5*math.abs(d-eq)
+
        v = 100+5*math.abs(d-eq)
if v > 1024 then v = 1024 end
+
        if v > 1024 then v = 1024 end
if d < eq then
+
        if d < eq then
Motores.setvel2mtr(1, v, 1, v)
+
            Motores.setvel2mtr(1, v, 1, v)
else
+
        else
Motores.setvel2mtr(0, v, 0, v)
+
            Motores.setvel2mtr(0, v, 0, v)
end
+
        end
until Boton.getBoton()==1
+
    until Boton.getBoton()==1
+
 
print("Fin")
+
    print("Fin")
Motores.setvel2mtr(1, 0, 1, 0)
+
    Motores.setvel2mtr(1, 0, 1, 0)
util.wait(1)
+
    util.wait(1)
 
  end
 
  end
  
 
==Continue reading in Spanish==
 
==Continue reading in Spanish==
 
[http://www.fing.edu.uy/inco/proyectos/butia/mediawiki/index.php/Butialo]
 
[http://www.fing.edu.uy/inco/proyectos/butia/mediawiki/index.php/Butialo]

Revision as of 21:05, 30 September 2012

Butialo is a user-friendly environment that allows programming of the Butiá in the Lua language. Lua is a simple imperative scripting language but can create sophisticated programs. It is a dynamic language with automatic memory management and is extremely fast. Butialo is a derivative of the Pippy IDE (Python environment provided with the XO), which simplifies the creation of programs for the presence of components connected to the Butiá and offering snippets of code to access them.

The authoritative documentation is in the Spanish language at [1]

Installation

Download the Activity at [2]

Simple example

Move forward until there is an obstacle.

Motores.setvel2mtr( 1, 500, 1, 500 )
while true do
  local dist = Dist.getDistancia()
  if dist<700 then
     Motores.setvel2mtr( 1, 0, 1, 0 )
     repeat
        wait(1)
        dist = Dist.getDistancia()
     until dist > 700
     Motores.setvel2mtr( 1, 500, 1, 500 )
  end
end

Can also be programmed with events. The previous program is equivalent to the following:

local function adelante()   -- adelante is Spanish for forward or proceed
 Motores.setvel2mtr( 1, 500, 1, 500 )
end
local function esperar()    -- esperar is Spanish for wait
 Motores.setvel2mtr( 1, 0, 1, 0 )
 wait( 1 )
end

events.add( Dist.getDistancia, '<', 700, esperar )
events.add( Dist.getDistancia, '>', 700, adelante )
events.go()

Simple example (other)

Butia with dynamic stability. Take a Butiá, remove idler wheels and place an IR distance sensor pointing to the floor. The button toggles the behavior.

local d		--lecturas de distancia
local eq	--posicion de equilibrio de d
local v		--velocidad calculada

while true do
   print ("Presione el botón para comenzar")
   repeat until Boton.getBoton()==1
 
   eq = Dist.getDistancia() 
 
   print("Arrancando", eq)
   util.wait(1)
 
   repeat
       d = Dist.getDistancia()
       v = 100+5*math.abs(d-eq)
       if v > 1024 then v = 1024 end
       if d < eq then
           Motores.setvel2mtr(1, v, 1, v)
       else
           Motores.setvel2mtr(0, v, 0, v)
       end
   until Boton.getBoton()==1
 
   print("Fin")
   Motores.setvel2mtr(1, 0, 1, 0)
   util.wait(1)
end

Continue reading in Spanish

[3]