diff --git a/README.md b/README.md
index 58abba1..3d9b56e 100644
--- a/README.md
+++ b/README.md
@@ -12,8 +12,6 @@ with harware connected to an Arduino board without ever having to recompile and
Method names within the Python Arduino Command API are designed to be as close
as possible to their Arduino programming language counterparts.
-Checkout the 'dev' branch for recent experimental support of some features, such as `tone()`.
-
## Simple usage example (LED blink)
```python
#!/usr/bin/env python
@@ -157,10 +155,8 @@ response_char = board.SoftwareSerial.read() #read response character
- Expand software serial functionality (`print()` and `println()`)
- Add simple reset functionality that zeros out all pin values
- Add I2C / TWI function support (Arduino `Wire.h` commands)
-- Add `tone()` / `noTone()` squarewave generator support for piezo type speakers currently testing code for this (thanks to Sjoerd Dirk Meijer.)
-(sdmeijer) Add Python-code for Tone/NoTone.
- Include a wizard which generates 'prototype.ino' with selected serial baud rate and Arduino function support
(to help reduce memory requirements).
- Multi-serial support for Arduino mega (`Serial1.read()`, etc)
-- (sdmeijer) Add capacitive sensors (http://playground.arduino.cc/Code/CapacitiveSensor)