Wednesday 24 December 2014

primary school robot design questions

An undergraduate dissertation student is looking for help. James is a computing student looking at robot designs for primary education towards his dissertation and as part of the wider Junkbots project, and the working going on in both the Department of Computing and Immersive Technologies, and School of Education on Physical Computing at the University of Northampton.

The short questionnaire can be found at http://t.co/zdomXnW2Qe and is aimed at gathering a variety of responses from both current Teachers, Students of Education and from anyone with knowledge of programming teaching methods in both Key Stage 1 and 2. He is planning to create a product which aims to teach programming methods and practices based on the current and new national curriculum.

If you would like to know more about the Junkbots project contact scott.turner@northampton.ac.uk

Tuesday 26 August 2014

Junkbot's Facebook page available

A new Facebook page has been set-up to complement this blog: www.facebook.com/junkrobot



Please come along have a look.

If you would like to know more about the Junkbots project contact scott.turner@northampton.ac.uk

Wednesday 20 August 2014

About - LEGO Mindstorms Junkbots


About - LEGO Mindstorms Junkbots: "The idea behind the LEGO Mindstorms Junkbots is to bring together the motors of the LEGO and use them to power the robot which is otherwise created from junk. The key aims of the project are;
To give children at a KS2 primary school level an insight into what can be achieved through the use of simple programming.
To provide a fun and engaging activity for children to be creative and design their own robots.
To use the robots and programming software to achieve basic movements of the Junkbots.

The original junkbots project combined the idea of using motors and vibrations to move the bots with limited control however the new project uses the idea of programming to add a further element of control and as such the simplicity of the self contained NXT device was decided upon as a branch of this.

Aiming the project at KS1 and KS2 gives the opportunity to introduce basic programming from a young age and demonstrate just one of the interesting possibilities that comes from it."



'via Blog this'

If you would like to know more about the Junkbots project contact scott.turner@northampton.ac.uk

Monday 18 August 2014

Raspberry Pi Junkbot - Home

Raspberry Pi Junkbot - Home: A new website providing more information of the Raspberry Pi Junkbot project (combining Raspberry Pi, Scratch programming and junk). This will be added to as the  project develops.


At the moment it includes

- Introduction

-Discussion about the robot controller card

-ScratchGPIO

- Example of the drawing bot.




'via Blog this'

Friday 15 August 2014

Junkbot Raspberry Pi: 3 How to do it

Figure 1
In previous posts I start looked at using ScratchGPIO to control a junkbot  (http://junkbots.blogspot.com/2014/08/junkbot-pi-1-scratchgpio.html) and showed a Pi controlled junkbot briefly in action (http://junkbots.blogspot.co.uk/2014/08/junkbot-raspberry-pi-2-raspberry-pi.html).

In this post I aim to discuss
- Choice of motor controller card
- Provide an example of a drawing junkbot controlled through Scratch and Raspberrry Pi


Choice of interface/Controller card
The card choosen was the 4Tronix PiRoCon card  (http://4tronix.co.uk/store/index.php?rt=product/product&product_id=182). Selected for four reasons
- Price is reasonable (in my opinion).
- Fits straight onto the Pi through the GPIO - no extra cables needed.
- ScratchGPIO has it as an addon so it makes programming it even easier (see http://cymplecy.wordpress.com/2013/10/31/pirocon-from-4tronix/).
- Others are using it for robot projects.

Use it is quite easy plug the board directly on to the GPIO connector of the Raspberry Pi (4tronix provide some advice in section 15 of http://4tronix.co.uk/blog/?p=22 on mounting the board). The only other changes I needed to make because I wasn't powering the motors through the DC input I had to change the jumper settings next to Vin Connector (see http://4tronix.co.uk/blog/?p=41 for layout) to reflect this.



Example
Now for the fun bit get the whole thing to draw (see Figure 1 and the video at the end)!

The junkbot itself is made up of a drinks can, three supports (we used LEGO here but it equally could be straws, sticks), a pen/pencil, and a  motor and broken propeller combination to create an unbalanced motor.

With the Raspberry Pi off, the the motor's wires are connected to the controller card at the connections for MotorA and the battery is also connected. Turn the Pi on and run ScratchGPIO5plus.


Figure 2
Figure 3





Figure 4















The first task is to make the variables AddOn (which will be used to tell the program we are using the PiRoCon card) and MotorA for the motor (see Figure 3).

In Figure 4 the program can be seen, essentially the left and right key spin the junkbot clockwise or anticlockwise by setting the Motor to either +ve or -ve values from 0 to 100. The space bar is used to stop the motor.

As it moves because one of the supports is a pen it draws. See the video below to watch it draw a squiggly line - control is still a challenge.


The bot was developed by Hayden Tetley and Scott Turner. Hayden's time was paid  for through the Nuffield Research Placements  Scheme (http://www.nuffieldfoundation.org/nuffield-research-placements).

Related Link

 




If you would like to know more about the Junkbots project contact scott.turner@northampton.ac.uk. The views and opinions is the authors and should not be taken as representing the views of any organisation the author is associated with.

Wednesday 13 August 2014

Junkbot Raspberry Pi: 2 Raspberry Pi Junkbot in action

First video of a junkbot being controlled by a Raspberry Pi.




The bot was developed by Hayden Tetley and Scott Turner. Hayden's time was paid  for through the Nuffield Research Placements  Scheme (http://www.nuffieldfoundation.org/nuffield-research-placements).

Next post will provide further details on how this was done.


If you would like to know more about the Junkbots project contact scott.turner@northampton.ac.uk

Tuesday 12 August 2014

Junkbot Raspberry Pi: 1 ScratchGPIO

A development I have being wanting to develop for a while is the combine the Raspberry Pi with a Junkbot to add some control. 

This the first of postings about these experiments. All the development will be around ScratchGPIO (http://cymplecy.wordpress.com/scratchgpio/) so this posting will look into its use.

Why ScratchGPIO?
Short answer - simplicity. It is designed to look and work like Scratch (http://scratch.mit.edu/) but allowing access to board that can drive motors.

Installing ScratchGPIO?
As a suggest use as lastest as possible version of the operating system as you can on your SD card. Initially we had trouble with missing Python files that was resolved when using an updated version of the operating system.

In the LXTerminal
Type in:
sudo wget http://goo.gl/Pthh62 -O isgh5.sh

then type in
sudo bash isgh5.sh

You should get to new icons for ScratchGPIO5 and ScratchGPIO5Plus

Now use these instead of the Scratch that came with the operating system.


See for more details: http://cymplecy.wordpress.com/scratchgpio/scratch-raspberrypi-gpio/


A good first test to make sure it is all working, is to get an LED to be turn off and on, details can be found at: http://cymplecy.wordpress.com/scratchgpio/scratchgpio-1st-project/


Next posting will be on connecting ScratchGPIO and the motor control board.


If you would like to know more about the Junkbots project contact scott.turner@northampton.ac.uk

Monday 11 August 2014

Junkbot LEGO: videos


In a recent post (http://junkbots.blogspot.co.uk/2014/07/junkbot-project-evolves1-idea.html ) we looked at the adding Mindstorm NXT brick and motors to a drinks can to produce a junkbot. Here are some videos showing it in action:



For more information on how this was done go to: http://legojunkbots.weebly.com/uploads/3/7/2/2/37227791/nuffield_nxt_mindstorms.docx or http://legojunkbots.weebly.com/

If you would like to know more about the Junkbots project contact scott.turner@northampton.ac.uk

Tuesday 5 August 2014

Mobile Robotics with Scratch: Build an Arduino-based insect-like Walker and program it with Scratch

Taken from: Mobile Robotics with Scratch: Build an Arduino-based insect-like Walker and program it with Scratch:



A version of the insect-like walker made with coat-hanger wire and originally designed by Jerome Demers (see also this instructable) and Gareth Branwyn. It comes in two versions:
  • a standalone, Arduino-only version, powered by a common old-fashioned Arduino sketch, and
  • a remote-controlled version, dynamically programmed using the MIT-developed Scratch visual programming language.


'via Blog this'

Friday 25 July 2014

Junkbot project evolves:1. The idea

Taken from: http://computingnorthampton.blogspot.co.uk/2014/07/physical-computing-junkbots-with-brain.html

Figure 1
A new stage for the Junkbots project (http://junkbots.blogspot.co.uk/ ) starts this week. Up to this point the junk bot building has largely being about building a moving (or drawing) 'bot' moved by vibration - limited control, but fun.

This week, A Nuffield funded bursary student starts working on investigating whether LEGO NXT or Raspberry Pi based solutions can be incorporated with the bot to add some control of the movement (still by vibration).


Idea One 

Is to add a LEGO NXT brick, plus motors that are made to vibrate, to a junkbot similar to one shown in figure 1. The motor and broken propeller combination being replaced with the NXT brick and LEGO motor. A good potential feature is it a self-contained unit with power and control together, as well as being potentially fairly simple to set-up.


Idea Two

Is to do a similar approach as idea one but keep the motor and broken propeller combination but control the motors via a Raspberry Pi.



For both approaches there are questions to be considered including 

  • Will the additions be too heavy? 
  • If it is too heavy could it be done with a single controlled motor?
  • What is the best programming choice?
    • For idea one is it the language that comes with the NXT or other programming language?
    • For idea two Scratch or Python?
  • How much control is there?
  • For idea two is this too complex to be taken into schools.

It is hoped that in the end, there will be some resource for others to use, that involves relatively simple 'robot' programming of a junk-based robot.

Details of the work will be published on the Junkbots Blog (htttp://junkbots.blogspot.co.uk/ ) as the project progresses.


If you would like to know more about the Junkbots project contact scott.turner@northampton.ac.uk

Sunday 6 July 2014

SunBEAM Seeker Bot | MAKE

SunBEAM Seeker Bot | MAKE: "BEAM robotics is a way of thinking about and building robots with roots in the “behaviorist” or “actionist” robotics movement of the 1980s. Rather than relying on microprocessors, programming, and digital logic, BEAM designs favor discrete components, stimulus-response control systems, and analog logic. From a design perspective, BEAM robotics is about getting the most complex and interesting behaviors using the simplest circuits, actuators, and components. Therein lies the challenge."



'via Blog this'

All views are the authors, and may not reflect the views of any organisation the author is connected with in any way.

Sunday 25 May 2014

student employability skills and STEM outreach

A recent paper was presented by John Sinclair and co-authored by Stuart Allen, Linda Davis-Sinclair, Trish Goodchild, Julie Messenger, and Scott Turner at Northampton Learning and Teaching Conference 2014- Northampton 2018: Planning, Designing and Delivering Student Success about STEM outreach and employability. 

Elements of junkbots were one of the science activities forming part of the activities aiming to empower students.




Enhancing student employability skills through partnership working in STEM outreach


John Sinclair, Stuart Allen, Linda Davis, Trish Goodchild, Julie Messenger, Scott Turner

Contact details:

Abstract:
For over a decade, University of Northampton staff and students have delivered successful STEM outreach activities, master classes and co-working opportunities to learners in schools and FE colleges.  In addition, the University works with the local STEMNET contract holder to gain national recognition for staff and students STEM Ambassadors and recognises STEM Ambassadors through awards (staff and student) as part of its annual celebration of volunteer achievement.  Both developments derive from a culture of empowering students as partners and enhancing the student journey.

The University has developed a co-ordinated programme of training and events to empower students and staff to engage with school and community outreach.  A cross-University STEM Steering Group (SSG) which features both management and grass roots-level representation from the across the University (Science and Technology, Health, Education, the Arts and its Centre for Employability and Engagement) manages the activities, including recruiting representation from the student body.  As such, SSG is uniquely well-placed to champion STEM activities across the University and to make these available to the wider community.  Local schools are able to access inspirational science activities, whilst University students gain employability-related skills in leadership, communication, project-delivery and self-motivation and staff gain valuable CPD.  Students also identify more strongly with the University.  The total package plays a major role in contributing to University aspirations in widening participation and is hugely popular with participants.  This paper will outline the project and will showcase the positive enhancements which it offers to University of Northampton students and school participants.




If you would like to know more about the Junkbots project contact scott.turner@northampton.ac.uk

Sunday 6 April 2014

Super Simple Robots for Weekend Projects | NooTriX

Super Simple Robots for Weekend Projects | NooTriX: "Robotics is of great fun. But, making robots can take very long time… Or may be not. Checkout the selection of videos below we have gathered for you. Those DIY robots belong to the so called BEAM Robotics. Robots made along this philosophy are based on simple analog circuits with inexpensive and more often scavenged parts."



For more details go to: http://nootrix.com/2014/02/weekend-projects/



'via Blog this'

Friday 24 January 2014

ArtBot

Recently a post on a scoop.it site Primary Robots & Coding curated by Steve Thomas (His twitter feed is a great resource @stephendathomas) caught my attention - Art "Robot" (http://www.instructables.com/id/Art-Robot/ ). Essentially a similar idea, but it many ways a more sophisticated idea, than my drawing bots.

The Art "Robot" takes an idea similar to the drawing bots of using junk to make drawing 'robot'; then kicks it up a gear. The use of the ice-lolly stick push it further into the area of reusing materials (instead of my broken propellors - I wish I had thought of the lolly sticks). The cork for adding weight to a light motor is clever.

Have a look at http://www.instructables.com/id/Art-Robot/  for more details of how they built theirs.

Art Robots are not just being made from 'junk' another curated post from Primary Robots & Coding has Lego and Scratch being used to make drawing robots.

I plan to incorporate some of the ideas from Art "Robot" in the plans for the next improvements in the drawing bots plans. So watch this space.


Related posts






If you would like to know more about the Junkbots project contact scott.turner@northampton.ac.uk