diff --git a/README.md b/README.md
index dd20848..f3bf4c9 100755
--- a/README.md
+++ b/README.md
@@ -1,115 +1,9 @@
+Please use the latest release [TMSuino3](github.com/TMSuino/TMSuino3)
+=======
-TMSuino
-========
-
-_A low-cost arduino-based TMS ([transcranial magnetic stimulation](https://en.wikipedia.org/wiki/Transcranial_magnetic_stimulation)) device to influence the symptoms of bipolar disorder._
-
-## Table of contents
-
-- [Getting Started](#getting-started)
- - [The Picture](#picture)
- - [Prerequisites](#prerequisites)
-- [Building it](#building-it)
-- [Application](#application)
-- [Rationale](#rationale)
-- [License and Disclaimer](#license-and-disclaimer)
-- [Contributions and Questions](#contributions-and-questions)
-
-## Getting Started
-
-Despite over 30 years of activity and over 500 patents **transcranial magnetic stimulation** hasn't yet found broad adoption.
-
-It is my personal opinion that the reasons for this are two-fold:
-
-1. On-going dispute about it being a placebo effect - due to a lack of provable scientific explanations
-
-2. High costs - due to a focus on complex research devices
-
-This projects' focus is on the second point: Drastically cutting down costs.
-
-This is achieved using an Arduino UNO as the main driver module. Overall cost of parts is below 63 Euros ($75 as of August 2017).
-
-The device requires no soldering, tools needed are a pair of scissors and a measuring tape / ruler / yardstick.
-
-### Picture
-
-Here's a picture of the thing:
-
-![TMSuino](photos/the-thing4.jpg)
-
-It is worn like a cap:
-
-![TMSuino on head](photos/how-to-wear-rightside.jpg)
-
-### Prerequisites
-
-1. Arduino UNO R3 - as driver module
-
-2. Six coreless coils - to create magnetic fields
-
-3. Jumper cables - for wiring the coils to the arduino
-
-4. Cloth tape - to put everything together
-
-5. Double faced tape - to fix the coils onto the cap
-
-6. Tools: A sturdy pair of scissors - for all cutting tasks
-
-7. Optional tools: A printer - to print the placement pattern
-
-8. Optional parts: USB power adapter or 9V power adapter or 9V battery holder - as alternative power sources
-
-[For more details read the part list](partlist/README.md)
-
-## Building it
-
-It takes about two hours to build the device:
-
-1. Making the cap
- [For more details see coil setup procedure](coilsetup/README.md)
-
-2. Wiring
- [For more details see the wiring description](wiring/README.md)
-
-3. Arduino Code
- [For more details see the code readme](code/README.md)
- [And if problems persist the troubleshooting readme](troubleshooting/README.md)
-
-4. Fixing jumper cables
- [See the details on fixing here](fixing/README.md)
-
-## Application suggestions
-
-#### Side effects
-
-Sessions of 15 minutes' length might be required to register any effects. Head aches, a "pressure feeling", can occur - these are expected to be harmless and temporary. Slight nausea, especially on an empty stomach, can occur - this is expected to lessen after one week of application.
-
-#### What to watch out for
-
-The desired effect would be called **"sobering"** - hinting the disruption of a manic phase. Or **"stabilizing"** - hinting the improvement of a depressive phase. Nothing is felt if no phase was active or no change occurred.
-
-**This is no treatment plan - just a starting point for your own research efforts.**
-
-When you end a sitting, check that the LED of the Arduino is still on and _not_ blinking. Then you know it has not gone into error mode some time during the sitting.
-
-## Rationale
-
-If you are curious why mentioned parts and materials where selected, [read the details in the rationale](rationale/README.md).
-But you don't need to know this to build and use the device.
-
-## License and Disclaimer
-
-For anything to be low-cost it must be open-source. Otherwise third parties will always take their share.
-
-Therefore this work is licensed under CC0; putting all of it into the public domain. See the [full text of CC0 here](License-CC0.txt).
-
-## Legal issue
-
-For legal reasons every person that wants to try this device has to build it by themselves.
-
-## Contributions and Questions
-
-Are welcome. Please see the [contributing and questions section](contributing/README.md) for more.
-
+**This project is outdated and kept for refernce only**
+[Please use TMSuino3](github.com/TMSuino/TMSuino3)
+[The older version TMSuino/TMSuino2 is kept for reference only](old/README.md)
+
diff --git a/TMSuino/TMSuino.ino b/TMSuino/TMSuino.ino
index 3288791..f898b3e 100755
--- a/TMSuino/TMSuino.ino
+++ b/TMSuino/TMSuino.ino
@@ -15,20 +15,36 @@
#define I6 (A5)
#define LED (13)
+#define BUZZER (2)
const int outpins[6] = { O1, O2, O3, O4, O5, O6 };
const int inpins[6] = { I1, I2, I3, I4, I5, I6 };
int value = 0;
-const int threshold = 1020;
+const int threshold = 1015;
int ledState = 0;
int cnt = 2;
+void beep() {
+digitalWrite(BUZZER, HIGH);
+delay(60);
+digitalWrite(BUZZER, LOW);
+delay(100);
+}
+
+void beeeep() {
+digitalWrite(BUZZER, HIGH);
+delay(300);
+digitalWrite(BUZZER, LOW);
+delay(150);
+}
+
void toggleLED() {
ledState = 1 - ledState;
digitalWrite(LED, ledState);
}
void error() {
+ digitalWrite(BUZZER, HIGH);
//endless loop toggling LED
while (true) {
toggleLED();
@@ -49,7 +65,7 @@ void activate(int coil) {
//argument is 1..6, *not* 0..5
void writeAndCheckInput(int coil) {
activate(coil);
- delay(50); //wait for the inpin to pull up
+ delay(20); //wait for the inpin to pull up
value = analogRead(inpins[coil-1]);
//Serial.println(value);
if (value < threshold) error();
@@ -65,6 +81,8 @@ void setup() {
//Serial.begin(9600);
pinMode(LED, OUTPUT);
digitalWrite(LED, LOW);
+ pinMode(BUZZER, OUTPUT);
+ digitalWrite(BUZZER, LOW);
for (int i=0; i < 6; i++) {
pinMode(outpins[i], OUTPUT);
@@ -75,6 +93,7 @@ void setup() {
activate(1);
activate(6);
digitalWrite(LED, HIGH);
+ beeeep(); beep(); beeeep();
}
void loop() {
@@ -82,6 +101,6 @@ void loop() {
cnt = cnt + 1;
if (cnt >= 6) cnt=2;
writeAndCheckInput(cnt);
- delay(200); //overall delay should be close to 250ms
+ delay(10);
}
diff --git a/code/README.md b/code/README.md
index 1dffeca..7a08986 100755
--- a/code/README.md
+++ b/code/README.md
@@ -32,9 +32,9 @@ sudo chmod a+rw /dev/ttyACM0
There is a row of three yellow LEDs on the board. The two leftmost yellow LEDs on the board should flicker for a short moment, that's the upload.
-7. After a few seconds, the rightmost of the yellow LEDs should light up and stay constantly alight.
- If it blinks fast, one of the coil connections is broken or connected in the wrong way.
- In that case go back to wiring and check all connections.
+7. After a few seconds, the rightmost of the yellow LEDs should light up and stay constantly alight, you should also hear a sequence of three beeps.
+ If it blinks fast, and the beeping is constant, one of the coil connections is broken or connected in the wrong way.
+ In that case go back to wiring and check all connections. Hit the arduino's reset button afterwards to restart the self-check.
| OK | Error |
|----|----|
diff --git a/coilsetup/README.md b/coilsetup/README.md
index ec09b77..06348c7 100755
--- a/coilsetup/README.md
+++ b/coilsetup/README.md
@@ -8,35 +8,7 @@ The lengths of all the bands connecting the coils are all the same. This is by d
The size of the pattern should be selected so that the outer coils are just above the ears.
Measure the distance between the ears along the top of the head. Use a measuring tape if available, use a piece of paper and ruler on the paper if not.
-If you have a printer avaiable, you can then select one of the following [prepared templates](#prepared-pattern-templates-for-printing), print it and do the cut-out.
-
-For those who need to draw it by hand, here is how to do that:
-
-## Drawing the pattern template by hand
-
-#### Calculating distances A,B,C
-
-Use your measurement of the ear-to-ear length to calculate the lengths A,B and C.
-
-Here is the [calculator on jsfiddle.net](https://jsfiddle.net/TMSuino/aajudjLj/embedded/result/)...
-
-...or you can use these formulas:
-
-```javascript
-margin = 3 cm or 2 inch;
-A = (ear2ear - margin - diameterCoil)*0.366025;
-B = a*0.5;
-C = Math.sqrt(Math.pow(a,2)-Math.pow(a*0.5,2));
-```
-
-#### Drawing
-
-![pattern with construction lines shown](../images/handdrawing-construction-lines.png)
-
-The bands between the coil circles should be wide enough so the tape does not overflow. Otherwise the tape would later stick to the hair.
-Furthermore, if your coils have a large inner diameter center holes might have a use for you.
-
-## Prepared pattern templates for printing
+Just print one of following pattern templates, matching your size, and cut it out.
Following patterns are made for 3.6cm coil holder diameter and 19mm tape width.
Make sure printer dialogs' page setup is set to landscape.
diff --git a/contributing/README.md b/contributing/README.md
index 6c4d84c..9336c82 100755
--- a/contributing/README.md
+++ b/contributing/README.md
@@ -2,14 +2,7 @@
Contributing and Questions
========
-If you have questions you can reach me via e-mail [info@tmsuino.org](mailto:info@tmsuino.org) but please keep in mind that I cannot and will not give medical advice. I will only answer to those mails that have a **public** key attached, so I can easily encrypt my answer.
-I believe this is prudent and in your best interests.
-
-Furthermore putting an e-mail address into the open typically leads to a lot of spam. I believe spammers won't send public keys with their mails, leaving me an easy option to filter that stuff.
-
-Of course, your are encouraged to encrypt your e-mails as well. Here is my [public key](tmsuino-public-key.asc) also available via Enigmail Keyserver (Fingerprint A4BF A8D1 9654 0268 D743 B873 6AE3 7A82 238A B985).
-
-Please note that encrypting an e-mail only encrypts the content. Subject, sender and recipients are still visible to anybody.
+If you have questions you can reach me via e-mail [info@tmsuino.org](mailto:info@tmsuino.org) but please keep in mind that I cannot and will not give medical advice.
I cannot guarantee to answer each and every question. But I will try to keep you informed of major developments.
diff --git a/contributing/tmsuino-public-key-0x238AB985.asc b/contributing/tmsuino-public-key-0x238AB985.asc
deleted file mode 100644
index fbcc14f..0000000
--- a/contributing/tmsuino-public-key-0x238AB985.asc
+++ /dev/null
@@ -1,53 +0,0 @@
------BEGIN PGP PUBLIC KEY BLOCK-----
-Comment: GPGTools - https://gpgtools.org
-
-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
-TzD321Evq4M2PeY=
-=Gn68
------END PGP PUBLIC KEY BLOCK-----
diff --git a/old/README.md b/old/README.md
new file mode 100755
index 0000000..963b00c
--- /dev/null
+++ b/old/README.md
@@ -0,0 +1,125 @@
+Please use the latest release [TMSuino3](github.com/TMSuino/TMSuino3)
+=======
+
+**This project is outdated and kept for refernce only**
+
+A brain region has been identified that, if stimulated, cancels bipolar disorder.
+Proof to this is that there are no brain scans of bipolar disorder patients available to the public.
+See for yourself: Here is the [list of publicly available brain scan datasets (page 4, table 1)](https://www.researchgate.net/profile/Krzysztof_Gorgolewski/publication/267452254_Making_big_data_open_Data_sharing_in_neuroimaging/links/544ffaae0cf249aa53da88b6.pdf).
+
+There's a lot, sometimes thousands of scans, for practically any mental ailment known to man - **except bipolar disorder**.
+I believe this is done to keep the number of competing researchers at bay.
+
+Interestingly this situation is going on for several years now. It seems that drugs for activating said brain region are very hard to develop.
+
+I propose to take a fundamentally different approach. The brain can be stimulated using magnetic fields.
+And magnetic fields can be easily shaped to target the brain region in question.
+
+As we are all experts in our specific fields, and far less experienced in others, I understand that pharma researchers might be no experts in electronics.
+For that reason I have created a simple brain stimulation device researchers can use as a starting point.
+
+Costs for parts, materials and shipping should be around 100,- dollars/euros.
+Here is the step-by-step procedure, estimated assembly time is 2 hours.
+
+TMSuino
+=======
+
+_A low-cost arduino-based TMS ([transcranial magnetic stimulation](https://en.wikipedia.org/wiki/Transcranial_magnetic_stimulation)) device to influence the symptoms of bipolar disorder._
+
+## Table of contents
+
+- [Getting Started](#getting-started)
+ - [The Picture](#picture)
+ - [Prerequisites](#prerequisites)
+- [Building it](#building-it)
+- [Concerns](#concerns)
+- [Rationale](#rationale)
+- [License and Disclaimer](#license-and-disclaimer)
+- [Contributions and Questions](#contributions-and-questions)
+
+## Getting Started
+
+Despite over 30 years of activity and over 500 patents **transcranial magnetic stimulation** hasn't yet found broad adoption.
+
+It is my personal opinion that the reasons for this are _high costs_ - due to small scale production.
+
+This projects' focus is on exactly that: Drastically cutting down costs.
+
+This is achieved using an Arduino UNO as the main driver module. Overall cost of parts is below 63 Euros ($75 as of August 2017), but shipping increases that to about 100,- Euros/Dollars.
+
+The device requires no soldering, tools needed are a pair of scissors and a measuring tape / ruler / yardstick.
+
+### Picture
+
+Here's a picture of the thing:
+
+![TMSuino](../photos/the-thing4.jpg)
+
+It is worn like a cap:
+
+![TMSuino on head](../photos/how-to-wear-rightside.jpg)
+
+### Prerequisites
+
+1. Arduino UNO R3 - as driver module
+
+2. Six coreless coils - to create magnetic fields
+
+3. Jumper cables - for wiring the coils to the arduino
+
+4. Active Buzzer - for informational sounds
+
+5. Cloth tape - to put everything together
+
+6. Double faced tape - to fix the coils onto the cap
+
+7. Tools: A sturdy pair of scissors - for all cutting tasks
+
+8. Optional tools: A printer - to print the placement pattern
+
+9. Optional parts: USB power adapter or 9V power adapter or 9V battery holder - as alternative power sources
+
+[For more details read the part list](../partlist/README.md)
+
+## Building it
+
+It takes about two hours to build the device:
+
+1. Making the cap
+ [For more details see coil setup procedure](../coilsetup/README.md)
+
+2. Wiring
+ [For more details see the wiring description](../wiring/README.md)
+
+3. Arduino Code
+ [For more details see the code readme](../code/README.md)
+ [And if problems persist the troubleshooting readme](../troubleshooting/README.md)
+
+4. Fixing jumper cables
+ [See the details on fixing here](../fixing/README.md)
+
+## Concerns
+
+Some people might be concerned about putting magnetic fields on the brain. [Have look at this device](https://uniavisen.dk/en/an-inventors-triumph-and-frustration/).
+
+That's used on patients, successfully so. TMSuino's coils are much smaller.
+
+## Rationale
+
+If you are curious why mentioned parts and materials where selected, [read the details in the rationale](../rationale/README.md).
+But you don't need to know this to build and use the device.
+
+## License and Disclaimer
+
+For anything to be low-cost it must be open-source. Otherwise third parties will always take their share.
+
+Therefore this work is licensed under CC0; putting all of it into the public domain. See the [full text of CC0 here](../License-CC0.txt).
+
+## Legal issue
+
+For legal reasons every person that wants to try this device has to build it by themselves.
+
+## Contributions and Questions
+
+Are welcome. Please see the [contributing and questions section](../contributing/README.md) for more.
+
diff --git a/partlist/README.md b/partlist/README.md
index 905a9e2..4134752 100755
--- a/partlist/README.md
+++ b/partlist/README.md
@@ -6,16 +6,17 @@
2. 1x USB cable, USB Type A to USB Type B ([conrad](https://www.conrad.de/de/usb-20-anschlusskabel-1x-usb-20-stecker-a-1x-usb-20-stecker-b-18-m-grau-goobay-973569.html))
3. 6x Visaton 4987 SP 0,82mH / 0,6mm Coreless Coil ([reichelt](https://www.reichelt.de/Spulen-fuer-Weichen/VIS-SP-4987/3/index.html?ACTION=3&GROUPID=3592&ARTICLE=36015&OFFSET=16&SID=93WYsC@qwQATYAAFGAA5A5a34be0f747405e2939f26a29ece6b64&LANGUAGE=EN))
-
-4. 1x 20 Pin 25cm Dupont Jumper Cable Male-Female ([reichelt](https://www.reichelt.de/More-accessories/DEBO-KABELSET/3/index.html?ACTION=3&LA=517&ARTICLE=161046&GROUPID=6671&trstct=lsbght_sldr::176618), [conrad](https://www.conrad.de/de/raspberry-pi-verbindungskabel-rb-cb3-25-1182193.html))
+4. 1x Active Buzzer as found in many Arduino starter kits
+
+5. 1x 20 Pin 25cm Dupont Jumper Cable Male-Female ([reichelt](https://www.reichelt.de/More-accessories/DEBO-KABELSET/3/index.html?ACTION=3&LA=517&ARTICLE=161046&GROUPID=6671&trstct=lsbght_sldr::176618), [conrad](https://www.conrad.de/de/raspberry-pi-verbindungskabel-rb-cb3-25-1182193.html))
-5. 1x HellermanTyton HelaTape Tex 19mm/10m HTAPE-TEX-BK-19X10 ([conrad](https://www.conrad.de/de/gewebeklebeband-hellermanntyton-helatape-tex-schwarz-l-x-b-10-m-x-19-mm-kautschuk-inhalt-1-rollen-651840.html))
+6. 1x HellermanTyton HelaTape Tex 19mm/10m HTAPE-TEX-BK-19X10 ([conrad](https://www.conrad.de/de/gewebeklebeband-hellermanntyton-helatape-tex-schwarz-l-x-b-10-m-x-19-mm-kautschuk-inhalt-1-rollen-651840.html))
-6. 1x Tesa 56665-00001-00 Extra Strong Double Sided Adhesive Handicrafts Tape ([amazon](https://www.amazon.de/tesa-56665-00001-00-Bastelband-75m-38mm/dp/B000KJP3QC/ref=sr_1_1?ie=UTF8&qid=1502283426&sr=8-1&keywords=tesa+56665), [alternative tesa product via reichelt](https://www.reichelt.de/Mount-Lay/TESA-56170/3/index.html?ACTION=3&GROUPID=6728&ARTICLE=138122&OFFSET=16&SID=93WYsC@qwQATYAAFGAA5A5a34be0f747405e2939f26a29ece6b64&LANGUAGE=EN))
+7. 1x Tesa 56665-00001-00 Extra Strong Double Sided Adhesive Handicrafts Tape ([amazon](https://www.amazon.de/tesa-56665-00001-00-Bastelband-75m-38mm/dp/B000KJP3QC/ref=sr_1_1?ie=UTF8&qid=1502283426&sr=8-1&keywords=tesa+56665), [alternative tesa product via reichelt](https://www.reichelt.de/Mount-Lay/TESA-56170/3/index.html?ACTION=3&GROUPID=6728&ARTICLE=138122&OFFSET=16&SID=93WYsC@qwQATYAAFGAA5A5a34be0f747405e2939f26a29ece6b64&LANGUAGE=EN))
-7. 2x Paper Sheet DINA4 or US Legal
+8. 2x Paper Sheet DINA4 or US Legal
# Tools
diff --git a/wiring/README.md b/wiring/README.md
index 175efbe..8f1caff 100755
--- a/wiring/README.md
+++ b/wiring/README.md
@@ -79,7 +79,11 @@ Then, since the wires are bare and could make contact to each other tape one of
![](../photos/blank-wires-partly-taped.jpg)
-As you can see I already connected the arduino, that's your next step as well. Go on to test your connections.
+# Adding the buzzer
+
+The buzzer is intended to sound a short beeping sequence at startup and a continuos beep if the device is stuck in error mode.
+Use a jumper cable to connect the plus side of the buzzer to arduino pin 2.
+And another jumper cable to connect the minus side of the buzzer to an arduino GND pin.
# Continue with [Arduino Code](../code/README.md)