<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.openhardwareconf.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Alec+Clews</id>
	<title>Open Hardware Miniconf - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.openhardwareconf.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Alec+Clews"/>
	<link rel="alternate" type="text/html" href="http://www.openhardwareconf.org/wiki/Special:Contributions/Alec_Clews"/>
	<updated>2026-04-11T09:12:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.1</generator>
	<entry>
		<id>http://www.openhardwareconf.org/index.php?title=SimpleBot_Initial_Software_Configuration&amp;diff=539</id>
		<title>SimpleBot Initial Software Configuration</title>
		<link rel="alternate" type="text/html" href="http://www.openhardwareconf.org/index.php?title=SimpleBot_Initial_Software_Configuration&amp;diff=539"/>
		<updated>2015-01-08T02:22:22Z</updated>

		<summary type="html">&lt;p&gt;Alec Clews: /* Creating your own SD image */  Added more setup info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Simple Bot software is installed on the Raspberry Pi. If you are attending the workshop you will be provided with a pre-installed SD card to use. This page will help you with any additional configuration that is required and allow you to create your own SD image if you need to later.&lt;br /&gt;
&lt;br /&gt;
= Changing the default configuration =&lt;br /&gt;
&lt;br /&gt;
 1. Insert the Micro SD card into a laptop or workstation using the provided adaptor&lt;br /&gt;
 2. When the image is mounted open the file `machine.local` in a text editor&lt;br /&gt;
 3. Edit the file as explained by the comments in the file.&lt;br /&gt;
 4. Save the file and unmount the SD card and then remove it&lt;br /&gt;
 5. Insert the card into the Raspberry Pi and power up&lt;br /&gt;
&lt;br /&gt;
By default the Miniconf image will use a hostname based on the unique serial number of the ARM CPU.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Creating your own SD image =&lt;br /&gt;
&lt;br /&gt;
You can create a suitable development kit as follows:&lt;br /&gt;
&lt;br /&gt;
 1. Install a Raspberry Pi Raspian Image on your SD by following [http://www.raspberrypi.org/documentation/installation/installing-images/README.md these] instructions.&lt;br /&gt;
 2. Boot your raspberry Pi and login as user `pi` with password `raspberry`&lt;br /&gt;
 3. Make sure your keyboard is correctly configured and you have internet access&lt;br /&gt;
 4. Run the following command&lt;br /&gt;
          script initialsetup -c &amp;quot;bash &amp;lt;(wget -O - https://tinyurl.com/RasPiIoT-1)&amp;quot;&lt;br /&gt;
    This will create a log in the file initialsetup. At the end of the process the Pi will reboot&lt;br /&gt;
 5. Login again&lt;br /&gt;
 6. Run the following command&lt;br /&gt;
          script packagesetup -c &amp;quot;bash &amp;lt;(wget -O - https://tinyurl.com/RasPiIoT-2)&amp;quot;&lt;br /&gt;
    This will create a log in the file packagesetup. At the end of the process the Pi will reboot.&lt;br /&gt;
    NB When asked you should &#039;N&#039; to ROS install unless you know that you really need it.&lt;br /&gt;
&lt;br /&gt;
There are more details at https://github.com/alecthegeek/CCHS_Raspian_for_IoT&lt;br /&gt;
&lt;br /&gt;
= General references =&lt;br /&gt;
&lt;br /&gt;
== Compiling the driver for the RT7601 WiFi chipset ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;This worked:&#039;&#039;&#039;&lt;br /&gt;
 ### Prepare kernel source&lt;br /&gt;
 sudo su&lt;br /&gt;
 cd /usr/src&lt;br /&gt;
 git clone --depth 1 https://github.com/raspberrypi/linux.git #downloads about 132MB&lt;br /&gt;
 ln -s /usr/src/linux /lib/modules/`uname -r`/build&lt;br /&gt;
 cd /lib/modules/`uname -r`/build&lt;br /&gt;
 make mrproper&lt;br /&gt;
 gzip -dc /proc/config.gz &amp;gt; .config&lt;br /&gt;
 make modules_prepare&lt;br /&gt;
 wget https://github.com/raspberrypi/firmware/raw/master/extra/Module.symvers&lt;br /&gt;
 exit&lt;br /&gt;
 ### Fetch driver source&lt;br /&gt;
 cd ~&lt;br /&gt;
 mkdir wireless-drivers&lt;br /&gt;
 cd wireless-drivers&lt;br /&gt;
 wget https://dl.dropboxusercontent.com/u/11876059/DPO_MT7601U_LinuxSTA_3.0.0.4_20130913.tar.gz&lt;br /&gt;
 tar zxf DPO_MT7601U_LinuxSTA_3.0.0.4_20130913.tar.gz&lt;br /&gt;
 cd DPO_MT7601U_LinuxSTA_3.0.0.4_20130913&lt;br /&gt;
 ### Make and install driver&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
&lt;br /&gt;
To configure it as a wireless client, edit /etc/network/interfaces and add this to the end:&lt;br /&gt;
&lt;br /&gt;
 auto ra0&lt;br /&gt;
 allow-hotplug ra0&lt;br /&gt;
 iface ra0 inet dhcp&lt;br /&gt;
 wpa-ssid &amp;quot;YOUR SSID&amp;quot;&lt;br /&gt;
 wpa-psk &amp;quot;YOUR PASSWORD&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Finally, reboot and it&#039;ll come up with the wireless interface enabled:&lt;br /&gt;
&lt;br /&gt;
 sudo reboot&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Other notes from various attempts:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
http://elinux.org/RPi_USB_Wi-Fi_Adapters&lt;br /&gt;
&lt;br /&gt;
http://www.maketecheasier.com/set-up-raspberry-pi-as-wireless-access-point/&lt;br /&gt;
&lt;br /&gt;
http://va3paw.com/2014/03/16/hsmm-mesh-on-raspberry-pi/&lt;br /&gt;
&lt;br /&gt;
This &amp;quot;fixnet&amp;quot; script may be useful to re-establish the network connection if it drops out after a day or so: http://www.raspberrypi.org/forums/viewtopic.php?f=28&amp;amp;t=40474#p330868&lt;br /&gt;
&lt;br /&gt;
Download driver source from http://www.mediatek.com/en/downloads/mt7610u-usb/&lt;br /&gt;
&lt;br /&gt;
 cd ~/mt7610u_wifi_sta_v3002_dpo_20130916&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
 cd ~/wireless-drivers/DPO_RT5572_LinuxSTA_2.6.1.3_20121022&lt;br /&gt;
 sudo make&lt;br /&gt;
 sudo make install&lt;br /&gt;
&lt;br /&gt;
 git clone https://github.com/jamesfoley/raspberry-pi-MT7601&lt;/div&gt;</summary>
		<author><name>Alec Clews</name></author>
	</entry>
	<entry>
		<id>http://www.openhardwareconf.org/index.php?title=SimpleBot_Initial_Software_Configuration&amp;diff=459</id>
		<title>SimpleBot Initial Software Configuration</title>
		<link rel="alternate" type="text/html" href="http://www.openhardwareconf.org/index.php?title=SimpleBot_Initial_Software_Configuration&amp;diff=459"/>
		<updated>2014-12-22T06:28:26Z</updated>

		<summary type="html">&lt;p&gt;Alec Clews: Draft SW page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Simple Bot software is installed on the Raspberry Pi. If you are attending the workshop you will be provided with a pre-installed SD card to use. This page will help you with any additional configuration that is required and allow you to create your own SD image if you need to later.&lt;br /&gt;
&lt;br /&gt;
= Changing the default configuration =&lt;br /&gt;
&lt;br /&gt;
 1. Insert the Micro SD card into a laptop or workstation using the provided adaptor&lt;br /&gt;
 2. When the image is mounted open the file `machine.local` in a text editor&lt;br /&gt;
 3. Edit the file as explained by the comments in the file.&lt;br /&gt;
 4. Save the file and unmount the SD card and then remove it&lt;br /&gt;
 5. Insert the card into the Raspberry Pi and power up&lt;br /&gt;
&lt;br /&gt;
By default the Miniconf image will use a hostname based on the unique serial number of the ARM CPU.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Creating your own SD image =&lt;br /&gt;
&lt;br /&gt;
You can create a suitable development kit as follows:&lt;br /&gt;
&lt;br /&gt;
 1. Install a Raspberry Pi Raspian Image on your SD by following [http://www.raspberrypi.org/documentation/installation/installing-images/README.md these] instructions.&lt;br /&gt;
 2. Boot your raspberry Pi and login as user `pi` with password `raspberry`&lt;br /&gt;
 3. Make sure your keyboard is correctly configured and you have internet access&lt;br /&gt;
 4. Run the following command&lt;br /&gt;
     bash &amp;lt;(wget https://   #todo)&lt;/div&gt;</summary>
		<author><name>Alec Clews</name></author>
	</entry>
</feed>