Skip to main content

Home/ Robotics/ Group items tagged way

Rss Feed Group items tagged

Astro Biology

Know When Milky Way Collision Occur - 0 views

  •  
    NASA scientist have found proof that our Milky Way had an encounter with a small galaxy or massive dark matter structure perhaps as recently as 100 million years ago. Are you also interested to know how galaxies form, evolve and interact?
  •  
    NASA scientist have found proof that our Milky Way had an encounter with a small galaxy or massive dark matter structure perhaps as recently as 100 million years ago. Are you also interested to know how galaxies form, evolve and interact?
Astro Biology

Milky Way View From Space Station - 0 views

  •  
    The Milky way steals the show from Sahara sands that make the Earth glow orange. Reid Wiseman a NASA astronaut has captured this pic from International Space Station.
  •  
    The Milky way steals the show from Sahara sands that make the Earth glow orange. Reid Wiseman a NASA astronaut has captured this pic from International Space Station.
York Jong

Inside The Ugobe Pleo - Organic Robot Life - 0 views

  • CALEB CHUNG: Of course we could have used micro-servo motors to accomplish the motion of Pleo, but we aren’t able to use expensive motors. So we had to engineer it with a high-speed motor with high gearing and no backlash for control purposes and have it all fit within the muscle envelope of Pleo.
  • So what we did was go after a lot of ethology research. How do animals really handle the complexity of their environment? We built a virtual brain—a whole system that decides how Pleo will react in various situations.
  • CALEB CHUNG: Pleo will reset thresholds and adjust his idea of what he thinks is normal. Let’s say you get Pleo and you take him home to your shag carpet. When Pleo walks, the carpet will drag on his feet. So his force feedback sensors will realize that he is spending too much energy to walk around. Pleo will try different things to reduce the energy spent. Eventually, he will have the idea to step higher. Your Pleo compared to my Pleo will walk with a higher step.
  • ...8 more annotations...
  • Eventually, we got to the point where we don’t know what Pleo will do next because he learns. If Caleb and I went to your house to see your Pleo, we couldn’t predict a lot of the things he would do, even though we know everything we put in him. Pleo has the ability to change and figure things out on his own.
  • Consumers will be able to download and customize Pleo later this year or early next year. We want to give the user the ability to change Pleo’s personality, animations and tricks. We also want to allow developers and hobbyists to take the SDK and motion system and behavior system and choreograph advanced features and animations for new AI functionality.
  • The only way you can create life is to give it choice. Life is very complex, and it has to evolve, otherwise it is a robot. The only way to get complex systems to work is to let them chose for themselves.
  • We didn’t include a camera (or voice recognition) in Pleo because of the price point for the product. Pleo is probably a good hack for a CMU camera, and we want people to develop these sorts of things.
  •  
    Pleo is UGOBE's first designer Life Form and is based on the Camarasaurus dinosaur. He is made up of an amazing array of sensors, motors  (14!), and distributed computing with an ARM-7 processor commanding it all.
York Jong

http://www-robotics.usc.edu/~maja/robot-control.html - 0 views

  • stimulus-response
  • a plan of action
  • combine the best of both Reactive and Deliberative control
  • ...3 more annotations...
  • three-layer systems.
  • if a robot needs to plan ahead, it does so in a network of behaviors which talk to each other and send information around, rather than a single planner, as with hybrid systems.
  • Deliberative Control: Think hard, then act. Reactive Control: Don't think, (re)act. Hybrid Control: Think and act independently, in parallel. Behavior-Based Control: Think the way you act.
  •  
    Robot control refers to the way in which the sensing and action of a robot are coordinated. There are infinitely many possible robot programs, but they all fall along a well-defined spectrum of control. Along this spectrum, there are four basic practical
David Corking

Tweenbots: Cute Beats Smart - O'Reilly Radar - April 2009 - Brady Forrest - 2 views

  • One man turned the robot back in the direction from which it had just come, saying out loud to the Tweenbot, "You can’t go that way, it’s toward the road.”
  •  
    I know its wrong, but this is giving me all kinds of evil ideas.
Filip Bártek

Recursive Bayesian estimation - Wikipedia, the free encyclopedia - 0 views

  • is constant relative to
  • is constant relative to
  • is constant relative to
  • ...13 more annotations...
  • Markov assumption
  • conditionally independent of the other earlier states
  • measurement at the k-th timestep is dependent only upon the current state
  • proportional
    • Filip Bártek
       
      It is proportional with the factor \alpha. \alpha = 1 / p(z_k|z_{1:k-1}) A way to compute the value of \alpha is shown below. It is common to all the updated states x_k at a given time k and measurement z_k.
  • predicted
  • marginalising out the previous states
  • predicted state
    • Filip Bártek
       
      p(x_k|z_{1:k-1})
  • update
  • predict and update steps
  • measurement likelihood
    • Filip Bártek
       
      p(z_k|x_k)
  • is constant relative to
  • can usually be ignored in practice
    • Filip Bártek
       
      We are typically interested in relative probabilities of the states. Equivalently [?], the p(x_k|z_{1:k}) across all the estimated states x_k is a probability distribution: \Sum_{x_k}{p(x_k|z_{1:k})} = 1
  • simply normalized, since its integral must be unity
York Jong

RoboLogo - Teaching Children how to program Interactive Robots - 0 views

  • All of the procedures take a discrete ``gear'' to specify the speed. The reasons for this are two-fold; first, by limiting the power of the truck, we simplify the interface to children. Secondly, it allows use to calibrate the ``gears'' so that, for example, 10 seconds forward in first gear is the same distance as 10 seconds backward in first gear.
  • The limitation of LOGO however is the lack of feedback from the environment. There is no way of expressing an event occuring in the outside world.
  • Simple constructs in iLogo extend the original LOGO language with interactivity capabilities of reading sensors and transfering control to different parts of the program.
  • ...6 more annotations...
  • These above rules handle all of the commands and expressions of the iLogo language except for the DoUnlessCommand. This command will execute a list of commands unless a boolean condition is met. If so, control is switched to a new list of commands for handling the exception condition.
  • Each stage of the compiler is designed using the Visitor pattern described in the book Design Pattern by Eric Gamma, et al. This pattern allows tree traversers to be created as seperated objects, instead of doing all traversals as methods of the nodes of the tree
  • We decided to use the JavaCC/JJTree tools created by Sun for generating a custom parser for our iLogo language written in Java.
  • The language must have primitives which allow the user of the language to write programs which easily transfer control based upon outside stimuli, in this case sensors on the truck.
  • An LM18293 push-pull motor driver connects the programmable counter array (PCA) of the 8051 to the truck's motors.
    • York Jong
       
      LM18293 is a DC motor driver.
  • We took the Berkeley Logo language design as our base and then added a primitive for reading sensor and an exception-based control structure.
  •  
    RoboLogo is a system that enables children to program interactive robots. Children can program a robotic truck that interacts with the environment without having to deal with low-level implementation details.
York Jong

ROBOT SENSOR INTERPRETATION - 0 views

  • how to interpret sensor data into a mathematical form readable by computers
  • There are only 3 steps you need to follow: Gather Sensor Data (data logging) Graph Sensor Data Generate Line Equation
  • Some sensors (such as sonar and Sharp IR) do not work properly at very close range
  • ...1 more annotation...
  • The way to get rid of noise is get a bunch of readings, then only keep the average. Make sure you test for noise in the actual environment your robot will be in
  •  
    Most roboticists understand faily well how sensors work. They understand that most sensors give continuous readings over a particular range. Most usually understand the physics behind them as well, such as speed of sound for sonar or sun interference for IR. Yet most do not understand how to interpret sensor data into a mathematical form readable by computers.
York Jong

BEAM Circuits -- 74*24x-based motor drivers compared - 0 views

  • In many ways, both the 74*240 and 74*245 are equally handy for BEAM use; both have 20 pins, and so the main difference that most folks will care about is that one inverts drive inputs, while the other doesn't. Out of curiousity, I decided to torture test the two chips to see how they compared under load.
York Jong

Short Period Astetics Intelligence - 0 views

  • These bots are powered by a Gold Cap and for a period of about one minute they move, always looking for the brightest lightspot, so in fact they will even follow a lightsource.
  • All these bots are powered by a 3,3F Gold Cap ( F= farad). You can charge them with a regulated power supply
  • the two 5 mm red LED's it is capable of following a light source.
  • ...8 more annotations...
  • When ALI bumps into something it will go backward for a short time and then go forward in another direction, so they will find their way all alone.
  • The first one is a light seeker and the second one is a line follower. This version I like very much.
  • When you are making the line follower you need to place the small light bulb. The light seeker doesn't need it.
  • When bumbing into something it can also reverse for several seconds. The time of going reverse can be changed. I've used 2M2 and 3,3 uF, this will give a reverse time of about 5 seconds
  • For the LED’s you can almost use any type or color, I used red ones 5 mm.
  • When you "power on" Bully it will first go backwards for some time. After a few seconds it seems that it doesn’t know what to do, it looks like it’s shivering. Then it starts of going to the brightest lightspot it can see, first slowly and then like "in a hurry". When it reaches the lightspot it makes turns which make it look like it’s happy! In the time doing all this stuff, each bump into a obstacle makes it move backwards for a few seconds. The time doing this can be changed with the 10 uF elco. Smaller means less seconds and bigger means reversing for more seconds.
York Jong

A Bot With Peripheral Vision - 0 views

  • I wanted to share an adaptation of the Schead v4, that I have been experimenting with. It is (for lack of a better term) a Master/Slave Schmitt Comparitor Head (M/S SC-H). With the addition of a 74 AC 240 or two (as motor drivers) and a pair of motors, you can put together an interesting little light seeking, wheeled robot with peripheral vision.
  • As long as the light reaching the photo-bridge of the Master SC-H is balanced, then the Slave SC-H acts as a regular, lone SC-H would. So, if one of the slave photo-diodes detects more light then the other, the inverter that controls the motor on that side changes states and is now the same as the inverter of the Master SC-H tied to the same motor. This turns that motor off and the robot will pivot around the stopped wheel toward the greater light source until the light on each sensors is balanced and the motor again begins to turn.
  • I am also using SCar to continue experimenting with Stacking separate Sensor/Behavior circuits onto a robot. I will post more as progress is made.
  • ...9 more annotations...
  • The diodes between the  photo-diodes create a constant voltage drop between the inputs of the inverters. They cause  a dead band to exist between the thresholds of the two inverters. In a way they cause the circuit to act like a kind of window  comparator. Without these diodes both inverters would always be in the same state. With them, there is a small range where their outputs are in opposite states.
  • The Slave section has only two diodes (or one LED) between the photo-diodes. This makes it respond to smaller differences in light levels than does the Master part of the circuit
  • Basically, what I did was to stack one SC-H on top of another
  • I?m using a 74 HC 139 to direct the outputs of the M/S SC-H circuit to the appropriate motor(s)
  • Cheesy works very well. I?ve had fun making him chase a spot of light from a flashlight around on the floor. He has even been able to detect and react to the flashlight spot on the floor of the brightly lighted lab where I work.
    • York Jong
       
      Stacking separate Sensor/Behavior
York Jong

LEDs - BEAM Wiki - 0 views

  • LEDs can be used as photodiodes (tho' their sensitivity is relatively low, so they're only useable this way in very bright conditions). When light is applied to an LED the anode sources current and becomes positive.
York Jong

[News] Superbot:可任意變形的模組化機器人 - 47 views

作者: mybigfish (ghoti) 看板: News 標題: [News] Superbot:可任意變形的模組化機器人 時間: Sun Feb 25 16:08:05 2007 Superbot:可任意變形的模組化機器人 Modular robot's wriggles show greater flexibility http://www.newscientisttech.com...

news

started by York Jong on 28 May 07 no follow-up yet
buycashapp30

Buy Verified CashApp Accounts - BTC Enable Aged CashApp - 0 views

  •  
    There is no one-size-fits-all answer to this question, as the best way to buy a verified CashApp account will vary depending on your specific needs and preferences. However, some tips on how to buy verified CashApp accounts include: doing your research ahead of time, finding a reputable seller, and being prepared to pay a bit more for a verified account. With that said, following these tips should help you find and purchase a verified Cash App account without any major issues.
1 - 15 of 15
Showing 20 items per page