<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://badge.emfcamp.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JasperWallace</id>
	<title>EMF Badge - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://badge.emfcamp.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=JasperWallace"/>
	<link rel="alternate" type="text/html" href="https://badge.emfcamp.org/wiki/Special:Contributions/JasperWallace"/>
	<updated>2026-04-08T17:16:48Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://badge.emfcamp.org/w/index.php?title=TiLDA_MK3/NeoPixel&amp;diff=242</id>
		<title>TiLDA MK3/NeoPixel</title>
		<link rel="alternate" type="text/html" href="https://badge.emfcamp.org/w/index.php?title=TiLDA_MK3/NeoPixel&amp;diff=242"/>
		<updated>2016-08-24T19:32:24Z</updated>

		<summary type="html">&lt;p&gt;JasperWallace: add some urls to examples.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;One feature of the Mk3 is a single NeoPixel multi-colour LED adjacent to the red power/charge LED.&lt;br /&gt;
&lt;br /&gt;
==Faulty manufacture==&lt;br /&gt;
Unfortunately, during the original manufacture of the badges the NeoPixel was mounted 180 degrees out of orientation.  As originally delivered it will not function, being mounted with the triangular notch facing the outer part of the badge and the chip part of the LED (the brown spot under the transparent plastic) facing the charge LED.  The correct position is with the triangular notch facing inward and the chip part facing the &amp;quot;D1&amp;quot; label of the silkscreen.&lt;br /&gt;
&lt;br /&gt;
===Correcting the faulty mount===&lt;br /&gt;
The best solution should be to use soldering tweezers take the LED off, clean the pads, turn it, and put it on but this is a delicate operation that will probably destroy the LED.  The trick is to be quick, to use a fairly high temperature (350-370 degrees) and add some new solder to the pads to increase the heat transfer.&lt;br /&gt;
&lt;br /&gt;
You can possibly use two soldering irons at the same time, one on each side of the LED. &lt;br /&gt;
&lt;br /&gt;
Avoid hot air at all costs, the badge is packed and you don't really want to risk blowing the charging LED away or even worse, damaging the LCD.&lt;br /&gt;
&lt;br /&gt;
==Programming the LED==&lt;br /&gt;
&lt;br /&gt;
See this: https://github.com/mayhem/tilda-mk3-led-demo/blob/master/main.py&lt;br /&gt;
&lt;br /&gt;
Or NeoPixelTest in the App Library: http://api.badge.emfcamp.org/app/emuboy/neopixtest&lt;/div&gt;</summary>
		<author><name>JasperWallace</name></author>
	</entry>
	<entry>
		<id>https://badge.emfcamp.org/w/index.php?title=TiLDA_MK3/Run_Code&amp;diff=231</id>
		<title>TiLDA MK3/Run Code</title>
		<link rel="alternate" type="text/html" href="https://badge.emfcamp.org/w/index.php?title=TiLDA_MK3/Run_Code&amp;diff=231"/>
		<updated>2016-08-14T21:59:51Z</updated>

		<summary type="html">&lt;p&gt;JasperWallace: /* Option 1: REPL */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This video is meant for the micropython board, but most of it works similar on the TiLDA: https://micropython.org/ &lt;br /&gt;
&lt;br /&gt;
= Option 1: REPL =&lt;br /&gt;
REPL stands for &amp;quot;[https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop Read–eval–print loop]&amp;quot; and allows you to run python code, line by line. This is a great way to see effects of certain hardware commands instantly and to test basic python features. &lt;br /&gt;
&lt;br /&gt;
This allows you to run code, line by line, on the badge and to see the effects instantly. Follow https://micropython.org/doc/tut-repl or follow step 1-4 on the [[TiLDA_MK3/Get_Started|Get Started]] guide. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Note:&amp;lt;/strong&amp;gt; This will only work if you have an empty &amp;lt;code&amp;gt;main.py&amp;lt;/code&amp;gt; on your badge to stop the home screen from taking over instantly. If an app or script is already running you will not get a REPL that you can use to program, but simple debug output instead. Remember to remove it afterwards if you want to use the home screen again.&lt;br /&gt;
&lt;br /&gt;
You can also press Ctrl-C to stop the currently running app and get to the python prompt.&lt;br /&gt;
&lt;br /&gt;
= Option 2: Copying files =&lt;br /&gt;
You can also copy your code to &amp;lt;code&amp;gt;main.py&amp;lt;/code&amp;gt; on your badge, safely eject and then reset the badge via the button. To debug it you can use the serial console (see option 1) which will show you all text printed via &amp;lt;code&amp;gt;print()&amp;lt;/code&amp;gt; and errors.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Note:&amp;lt;/strong&amp;gt; It's very important to always correctly &amp;quot;eject&amp;quot; the usb storage before pressing the reset button, otherwise your filesystem is going to corrupt and you might have to [[TiLDA_MK3/reset|factory reset]] your badge&lt;br /&gt;
&lt;br /&gt;
Remember to remove your main.py afterwards if you want to use the home screen again.&lt;br /&gt;
&lt;br /&gt;
= Option 3: pyboard.py =&lt;br /&gt;
You can also use micropythons's &amp;lt;code&amp;gt;pyboard.py&amp;lt;/code&amp;gt; script to automatically run a full local file of code without having to worry about copying it line-by-line or ejecting your device. &lt;br /&gt;
 &lt;br /&gt;
You can find a quick introduction on how to set it up [https://badge.emfcamp.org/wiki/TiLDA_MK3/Get_Started#5._Run_a_whole_file_of_code here].&lt;br /&gt;
&lt;br /&gt;
This option is very useful as a build script with your editor, it allows you to quickly test whether your app is working. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;Note:&amp;lt;/strong&amp;gt; While this option works even if you run the home screen, it works slightly better if you have an empty &amp;lt;code&amp;gt;main.py&amp;lt;/code&amp;gt; on your badge.&lt;br /&gt;
&lt;br /&gt;
=== Sublime Text 2 build script ===&lt;br /&gt;
OSX:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{&lt;br /&gt;
    &amp;quot;shell_cmd&amp;quot;: &amp;quot;/path/to/your/pyboard.py --device /dev/tty.usbmodem* $file&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>JasperWallace</name></author>
	</entry>
	<entry>
		<id>https://badge.emfcamp.org/w/index.php?title=Main_Page&amp;diff=33</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://badge.emfcamp.org/w/index.php?title=Main_Page&amp;diff=33"/>
		<updated>2016-06-09T21:06:30Z</updated>

		<summary type="html">&lt;p&gt;JasperWallace: add new blog link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The aim of the EMF badge is to give people interesting hardware they've probably not experimented with before while being simple enough that anyone can play with it.&lt;br /&gt;
&lt;br /&gt;
==EMF2016 - TiLDA Mkπ==&lt;br /&gt;
See this years badge announcement on our blog&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://blog.emfcamp.org/post/144514906298/tilda-mkπ-the-hackable-conference-badge-that&lt;br /&gt;
&lt;br /&gt;
Update, we have sponsors, the badge is saved!&lt;br /&gt;
&lt;br /&gt;
http://blog.emfcamp.org/post/145667126793/the-emf-tilda-badge-is-saved&lt;br /&gt;
&lt;br /&gt;
==EMF2014 - TiLDA MKe==&lt;br /&gt;
[[File:Tumblr_inline_n9znh3W5tC1rpuop0.jpg|right|thumb|Front]]&lt;br /&gt;
&lt;br /&gt;
The [[TiLDA MKe|TiLDA MKe project]] is code named &amp;quot;ElectroMagnetic Boogaloo&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The MKe is an entirely new design, based on the Arduino Due.  It brings an LCD display, Accelerometer and Gyro, along with a long-range wireless transceiver.  The original specification was to give people live schedule updates and camp notifications, but the hardware was capable of much more.&lt;br /&gt;
&lt;br /&gt;
Please Note: There are a couple of minor hardware and some firmware issues with the MKe that might be effecting your badge. If you've let the magic smoke out of your charge controller or have tried to re-flash and ended up with nothing but a couple of dimly glowing lights then DO NOT DESPAIR -It's recoverable and fixes, documentation and lots of firmware are still being produced :)&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==EMW2013 - SiNE==&lt;br /&gt;
[[File:800px-SiNE_Front_Angle.JPG|thumb|300px]]&lt;br /&gt;
[[SiNE|SiNE: Investigating the Neighbourhood of EMW]]&lt;br /&gt;
&lt;br /&gt;
Each attendee of Electromagnetic Wave received a SiNE badge, allowing them to take part in a treasure hunt based around the boat. By solving the clues, attendees were directed to an object or location either on or near the Stubnitz. The clue letter was also the first letter of the answer - large matching letters fitted with IR code transmitters were stored at each location. Holding your badge in front of the letter lit the corresponding light on a badge, allowing the user to collect them all!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==EMF2012 - TiLDA MK1==&lt;br /&gt;
[[File:Emf2012_badge_pcb.png|thumb|300px]]&amp;lt;br/&amp;gt;&lt;br /&gt;
[http://wiki-archive.emfcamp.org/2012/articles/b/a/d/Badge.html TiLDA]&amp;lt;br/&amp;gt;&lt;br /&gt;
The first EMF camp badge, base around the Arduino Leonard, with on board IR, NRF24 Radio and RGB LED's.&amp;lt;br/&amp;gt;&lt;br /&gt;
[http://blog.emfcamp.org/post/28558155390/revealing-tilda-our-camp-badge Revealing TiLDA, our camp badge!]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear: both&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==[[Team:Badge|Badge Team]]==&lt;br /&gt;
&lt;br /&gt;
The badge team is being headed by &lt;br /&gt;
*[[User:Dpslwk|'RepRap' Matt]] from Nottinghack&lt;br /&gt;
*[[User:thinkl33t|Bob]] from Hackspace Manchester&lt;/div&gt;</summary>
		<author><name>JasperWallace</name></author>
	</entry>
</feed>