Skip to main content

Home/ Robotics/ Group items tagged of

Rss Feed Group items tagged

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.
Astro Biology

Know How Origin of Earth's survived when Oxygen has Abundant - 0 views

  •  
    We all are aware of the fact that billions of years ago, there was very little oxygen on Earth to breathe. Scientist of University of California at Riverside (UCR) have researched when in Earth's history oxygen may have abundant. Curious to know how origins of Earth survived?
  •  
    We all are aware of the fact that billions of years ago, there was very little oxygen on Earth to breathe. Scientist of University of California at Riverside (UCR) have researched when in Earth's history oxygen may have abundant. Curious to know how origins of Earth survived?
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

MetaCricket: A designer's kit for making computational devices - 0 views

  • All Cricket devices have a built-in bidirectional infrared communications channel, which is used for Cricket-to-desktop communication (when downloading programs to a Cricket, or viewing sensor data) and Cricket-to-Cricket communication.
  • Cricket Logo is based on an iterative, interactive model of project development. It includes a “command center” window; instructions typed into this window are instantaneously compiled, downloaded to a Cricket, and executed, giving the system the flavor of an interpreted software environment such as LISP, BASIC, or FORTH.
  • The MetaCricket software system is based on a virtual machine, written in PIC assembly language and running on the Cricket, and a compiler for the virtual machine running on a desktop development computer
  • ...13 more annotations...
  • It is straightforward to implement an interpreter-like interface, where user commands are transparently compiled, downloaded, and executed.
  • The Cricket virtual machine is burned into the PIC microprocessor's internal ROM
  • The user's code resides in a serial EEPROM
  • Built-in infrared communications routines include a protocol for reading and writing to this external EEPROM, and for asking the virtual machine to begin execution of byte codes already loaded into the EEPROM.
  • Users write programs for the Cricket in Cricket Logo, a dialect of Logo specialized for the Cricket virtual machine. Essentially, there is a one-to-one mapping between statements in Cricket Logo and primitive functions built into the virtual machine. This makes the implementation of the compiler far simpler than typical compilers.
  • The compiler includes an interactive mode—a text window where user expressions are compiled, downloaded, and executed in one step when the user presses the return key. A portion of the Cricket's memory is set aside for these dynamic programs.
  • we have found that a debugger is not necessary because of the interactive and incremental style of project development that occurs when using the Cricket.
  • The infrared protocol includes the following capabilities: Check that a Cricket is present and ready for other commands. Write a byte to the Cricket's EEPROM. Read a byte from the Cricket's memory. Begin program execution from a particular memory address.
  • User-level primitive functions compile to one, two, or three bytes of object code for the Cricket virtual machine.
  • The Cricket virtual machine has two process threads: a foreground process and a background daemon. In most Cricket programs, the foreground thread handles all the work, but for some tasks, the background daemon is valuable. For example, the background daemon can be used to instigate a periodic activity, or take action when some event occurs.
  • There are hardware-specific primitives for interacting with on-board Cricket hardware. Motor commands set state (on or off), direction, and power levels for each of the two integrated motor drivers. Analog sensor primitives (sensora and sensorb) return a value (0 to 255) for each of the two voltage inputs. These inputs also may be interpreted as digital values using the switcha and switchb primitives. There is a pair of primitive functions for generating tones on the piezo beeper: beep and note, the latter taking pitch and duration arguments.
  • there is a background millisecond timer that is updated every four milliseconds
  • One foreground thread plus one background daemon Daemon fires when provided Boolean expression makes false-to-true transition
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.
Astro Biology

MSH 11-62 Supernova Remnant - 0 views

  •  
    Chandra of the supernova remnant MSH 11-62 reveals an irregular shell of hot gas, shown in red, surrounding an extended nebula of high energy X-rays, shown in blue.
  •  
    Chandra of the supernova remnant MSH 11-62 reveals an irregular shell of hot gas, shown in red, surrounding an extended nebula of high energy X-rays, shown in blue.
Astro Biology

How Massive Geographic Change may have Triggered Explosion of Animal Life - 0 views

  •  
    Scientist are researching about geologic history that may help to solve the riddle of the "Cambrian explosion," the rapid diversification of animal life in the fossil record. Learn more about what Cambrian explosion is and how it has affected animal's life in the past.
  •  
    Scientist are researching about geologic history that may help to solve the riddle of the "Cambrian explosion," the rapid diversification of animal life in the fossil record. Learn more about what Cambrian explosion is and how it has affected animal's life in the past.
Astro Biology

NASA Begins Construction Of Mars Lander - 0 views

  •  
    Do you know NASA has begun creation of 2016 Mars lander. This mission will investigate following points such as how earth like planets are formed, inner layered structure of core and many more. Want to know more about this mission?
  •  
    Do you know NASA has begun creation of 2016 Mars lander. This mission will investigate following points such as how earth like planets are formed, inner layered structure of core and many more. Want to know more about this mission?
York Jong

SENSORS - SHARP IR RANGE FINDER - 0 views

  • The Sharp IR Range Finder works by the process of triangulation. A pulse of light (wavelength range of 850nm +/-70nm) is emitted and then reflected back (or not reflected at all). When the light returns it comes back at an angle that is dependent on the distance of the reflecting object. Triangulation works by detecting this reflected beam angle - by knowing the angle, distance can then be determined.
  • The IR range finder reciever has a special precision lens that transmits the reflected light onto an enclosed linear CCD array based on the triangulation angle.
  • The Sharp IR has a non-linear output. This means that as the distance increases linearly (by set increments), the analog output increases/decreases non-linearly.
  • ...10 more annotations...
  • To effectively use your Sharp IR Range Finder, you must have a voltage output versus distance chart to reference from.
  • One major issue with the Sharp IR Range Finder and that is going below the minimum sensor range. This is when an object is so close the sensor cannot get an accurate reading, and it tells your robot that a really close object is really far.
  • Another issue is the high narrowness of the IR beam. In reading sharp details and getting high accuracy, a thin beam is ideal. But the problem with a thin beam is that if it is not pointed exactly at the object, the object is therefore invisible.
  • A more advanced use for the Sharp IR Range Finder is to do mapping. To do this, you need at least one Range Finder, and at least one non-modified servo.
  • The sharp IR can be used as a quick and easy front non-contact robot bumper on your robot. Just place two IR devices in front of your robot and cross beams as shown. Ideally you would perfer to use rangers that have wider beams. Note: A single sonar can do this job just as well.
  • For example, a box in front of your robot might appear like this: 0 0 0 0 0 106 120 124 121 109 0 0 0 0 0
York Jong

Build this simple "electronic electroscope," a FET electrometer - 0 views

  • This simple circuit can detect the invisible fields of voltage which surround all electrified objects
  • ...9 more annotations...
  • The Gate acts as an antenna, so leave it unconnected.
  • The 1-meg resistor helps protect the FET from being harmed by any accidental sparks to its Gate lead. The circuit will work fine without this resistor. Just don't intentionally "zap" the Gate wire with a charged object or your charged finger.
  • To test the circuit, charge up a pen or a comb on your hair, then wave it close to the little "antenna" wire. The LED should go dark. When you remove the electrified pen or comb, the LED should light up again.
  • If you suspect that humidity is very high, test this by rubbing a balloon or a plastic object upon your arm. If the balloon does not attract your arm hairs, humidity is too high.
  • This FET sensor is not an ideal educational device because it responds differently to positive than to negative.
  • negative objects turn the LED off, it lights again when removed. positive objects make the LED bright, then dark when removed.
  • Obtain a small capacitor with a value below 100 picofarads. Connect it between the FET gate lead and one of the other FET leads (doesn't matter which one.) This greatly reduces the sensitivity of the device
  • Now make the circuit MORE sensitive. Obtain an alligator clip-lead, and connect it to the Gate lead of the FET. Let it hang loose without touching anything. You'll find that this has vastly increased the sensitivity of your FET circuit.
  •  
    This simple circuit can detect the invisible fields of voltage which surround all electrified objects. It acts as an electronic "electroscope.
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
York Jong

BEAM Pieces -- Integrated circuits - 0 views

  • 1381s are CMOS voltage-controlled triggers -- these "gate" a source until the voltage is above some "trip" limit, at which point it is allowed onto a third pin
  • We use them as 3- or 5-volt triggers
  • This chip is often considered the heart of Nv net technology
  • ...22 more annotations...
  • The '240 is often called "the bicore chip," because we can take advantage of the 240's inverters to turn a single 74*240 into a bicore
  • The '240 also has tri-state outputs, so an enable line can be used to turn its outputs on and off simply (good for adding reversing capability to a 'bot).
  • any *cores built with a 74*04 will require additional logic "downstream" to amplify the current to levels sufficient to drive a moto
  • Schmitt triggers can't easily be used in suspended bicore implementations
  • use its buffers as little current amplifiers
  • it is usable for either grounded or suspended bicore designs (but better for suspended)
  • 74HC/HCTxx non-buffers (74HC14 or 74HC04) draw about half of the current consumption, and have about half the drive current compared to HC / HCT buffer chips (74HC240 or 74HC245). Non-buffer chips are thus better for oscillators, say Nv and Nu applications; they are not suited for use in driving motors.
  • 74AC is best suited for motor driver applications with all inputs driven rail to rail.
  • The '245 is an octal buffer chip, and so has 8 channels of buffering power available for our misuse. This chip was designed for data transmission uses, but we'll misuse it as a motor driver chip
  • The '244 provides us with 8 (thus the "octal") buffers, enableable in banks of 4. This is a very useful chip for amplifying small currents
  • it can drive up to 4 motors in 2 directions each, or you can "buddy up" inputs and outputs to drive fewer motors at higher current
  • it can drive up to 4 motors in 2 directions each, or you can "buddy up" inputs and outputs to drive fewer motors at higher current
  • If you can't find 1381s locally, you might have better luck finding its European cousin, the TC-54 -- for details on it
  • Note that if you need more than about 200 mA per motor, you'll need to use an H-bridge, or some similar motor driver
  • The ideal BEAM circuit would use a low (2V-3V) voltage core and sensors combined with level shifting high (5-6V) volt motor drivers to maximize efficiency.
  • 74ACxxx used in typical BEAM applications uses 4x more supply current than does 74HC/HCTxxx.
  •  
    The following material is intended to cover usage and part selection details of ICs you're most likely to see in BEAM robots.
York Jong

Maxibug, Minibug, Microbug - 0 views

  • It is powered with two 3.3F Goldcaps. They can be charged in a few seconds. When they are charged, MAXIBUg gets "afraid" of light, and wanders of to go to play "in the dark". After a while, about 20 seconds (depending on the current used by the two motors ), the power has dropped, and it wants to "eat". It gets light attracted, and will turn and go to the light. When it gets there, it will recharge and still will be atrackted to the light until it reaches a trigger voltage , at which it gets "afraid"of the light again. This will go on all day until someone turns off the lightsource. While doing all this it also will backup when bumping into something.
  • Because of the "on-off" output of the first schmitt trigger, the inputs for the LDRs will switch. That's why it gets light atracted -light afraid. This also means that you cannot use IR diodes (like SHF205). You have to use LDRs !
  • ...2 more annotations...
  • The change in output is visualised with two red LEDs. When the LEDs are burning, the bot is "afraid" of light. They are mounted as eyes off the bot, that's why I used two off them. One LED will do also, but doesn't look nice !
York Jong

Behaviour Based Robotics & Deliberative Robotics - 0 views

  • The robots do not build a model of their world they simply act in response to the things they encounter whilst existing there.
  • This form of robotics has proved to be successful in environments that are unknown to the robot, environments that are busy or noisy such as a place with moving objects or people
  • An important part of the behaviour based theory is "embodiment" This means that a robot must be embodied, have a presence (it is an entity in itself).  In order to react the robot must be surrounded by the real world.
  • ...2 more annotations...
  • Alan Turing the inventor of the Turing Test might have been the first to recognize this, in a paper he wrote in the mid 1940's entitled "Intelligent Machines" he suggest that for a machine to achieve some levels of intelligence (his example was" language") it must be embodied.
  • Testing a behaviour based systems is quite different from deliberative systems.  You can test individual parts of the system, you are able to build up the behaviours the robot will have and then test each for correctness.
York Jong

Intermediate Robot Building - 0 views

  • This book provides far more detail on the hardware aspects of robot building than any other I have seen to date and is worth picking up.
  • "Intermediate Robot Building" offers the kind of real-world knowledge that only an experienced robot builder can offer--the kind of knowledge beginners usually have to learn through mistakes. In this book, you'll learn the value of a robot heartbeat and the purpose of the wavy lines in photocells.
  •  
    Intermediate Robot Building by David Cook covers all aspects of robot building, from mechanical, to electronics, to microcontroller selection.
York Jong

PHOTORESISTOR ALGORITHMS - 0 views

  • pseudocode: read left_photoresistor read right_photoresistor if left_photoresistor detects more light than right_photoresistor then turn robot left if right_photoresistor detects more light than left_photoresistor then turn robot right if right_photoresistor detects about the same as left_photoresistor then robot goes straight loop
  • Photovore Algorithm, Improved This algorithm does the same as the original, but instead of case-based it works under a more advanced Fuzzy Logic control algorithm. Your robot will no longer just have the three modes of turn left, turn right, and go forward. Instead will have commands like 'turn left by 10 degrees' or 'turn right really fast', and with no additional lines of code! pseudocode: read left_photoresistor read right_photoresistor left_motor = (left_photoresistor - right_photoresistor) * arbitrary_constant right_motor = (right_photoresistor - left_photoresistor) * arbitrary_constant loop
  • ...1 more annotation...
  • Photovore, Split Brain Approach This algorithm works without comparison of photoresistor values. Instead, just command the right motor based on light from the right sensor, and the left motor with only data from the left sensor. You can also get interesting variations by reversing the sensors for a cross-brain algorithm. pseudocode: read left_photoresistor read right_photoresistor move left_wheel_speed = left_photoresistor * arbitrary_constant move right_wheel_speed = right_photoresistor * arbitrary_constant loop
  •  
    The photovore is a robot that chases light, and is perhaps the simplest of all sensor algorithms. If you are a beginner, this should be your first algorithm.
York Jong

Ray's Solder-less Motor Mount Tutorial - 0 views

  • attach your Pager Motors to your Popper using two Fuse Clips, two Small Paper Clips, and no solder
  • ...7 more annotations...
  • Set one straightened paper clip aside, you will use it at the end. Bend the two tips of one of the two paper clips as shown.
  • Put it in through the fuse clip like this, but make sure the notch in the fuse clip is facing out. (The clip has one edge bent inwards. This is the part that has to face outwards). Study this next picture closely.
  • From the position above, bend the paper clip up and then around the lead of the fuse clip as in the next picture.
  • Bend the paper clip under the fuse clip...
  • then up and over the fuse clip:
  • then around its other lead and you're almost done with the first fuse clip.
  • First clip -- wire is on the RIGHT side of the fuse clip leads... Second Clip -- wire is on the LEFT side of the fuse clip leads... But remember to make sure the notch in the fuse clip is facing out. (The clip has one edge bent inwards. This is the part that has to face outwards).  Follow all the steps above with the second clip and you get this:
  •  
    I'll show you how to attach your Pager Motors to your Popper using two Fuse Clips, two Small Paper Clips, and no solder.
York Jong

BEAM Circuits -- Solar engines - 0 views

  • The purpose of a solar engine is to act like a power "savings account" -- a small trickle of incoming energy is saved up until a useable amount is stored
  • A solar-powered robot can be made to work, even in relatively-low light levels
  • Solar cell size is minimized
  • ...2 more annotations...
  • by far the predominant
  • theoretically the most efficient
  •  
    At the heart of most solar-powered robots is a circuit called the solar engine (variously called Solar Engines, solarengines, SEs; a.k.a,relaxation oscillators). The purpose of a solar engine is to act like a power "savings account" -- a small trickle of incoming energy is saved up until a useable amount is stored. This stored energy is then released in a burst, in order to drive some useful (if only sporadic and incremental) work.
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.
1 - 20 of 104 Next › Last »
Showing 20 items per page