diff --git a/README.md b/README.md
index 2f423ffaa..c431cf647 100644
--- a/README.md
+++ b/README.md
@@ -23,22 +23,24 @@ If you're into "generic" AVR programming, I'm happy to tell you that all relevan
## Supported microcontrollers:
-* ATmega8*
-* ATmega48*
-* ATmega88*
-* ATmega168*
-* ATmega328*
+* ATmega8
+* ATmega48
+* ATmega88
+* ATmega168
+* ATmega328
-* All variants (A, P, PA) except PB
+* All variants (A, P, PA and PB)
Can't decide what microcontroller to choose? Have a look at the specification table below:
-| | ATmega328 | ATmega168 | ATmega88 | ATmega48 | ATmega8 |
-|--------------|-----------|-----------|----------|----------|---------|
-| **Flash** | 32kB | 16kB | 8kB | 4kB | 8kB |
-| **RAM** | 2kB | 1kB | 1kB | 512B | 1kB |
-| **EEPROM** | 1kB | 512B | 512B | 256B | 512B |
-| **PWM pins** | 6 | 6 | 6 | 6 | 3 |
+| | ATmega328 | ATmega168 | ATmega88 | ATmega48 | ATmega8 |
+|--------------|-------------|-----------|----------|----------|---------|
+| **Flash** | 32kB | 16kB | 8kB | 4kB | 8kB |
+| **RAM** | 2kB | 1kB | 1kB | 512B | 1kB |
+| **EEPROM** | 1kB | 512B | 512B | 256B | 512B |
+| **PWM pins** | 6/9* | 6 | 6 | 6 | 3 |
+
+* ATmega328PB has 9 PWM pins
## Why add Arduino support for these microcontrollers?
* They are all Arduino UNO compatible (drop-in replacement)
@@ -147,7 +149,7 @@ Your code should now be running on your microcontroller! If you experience any i
This core uses the standard Arduino UNO pinout and will not break compatibility of any existing code or libraries. What's different about this pinout compared to the original one is that this got three aditinal IO pins available. You can use digital pin 20 and 21 (PB6 and PB7) as regular IO pins if you're ussing the internal oscillator instead of an external crystal. If you're willing to disable the reset pin (can be enabled using [high voltage parallel programming](http://www.atmel.com/webdoc/stk500/stk500.highVoltageProgramming.html)) it can be used as a regular IO pin, and is assigned to digital pin 22 (PC6).
Click to enlarge:
-
+
## Minimal setup