Skip to content

Commit 0fa2431

Browse files
committed
Examples/Docs: Drop unecessary intensifiers.
1 parent f9f6619 commit 0fa2431

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

examples/plasma2040/alternating-blinkies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import plasma
44

55
"""
6-
This super simple example sets up two alternating colours, great for festive lights!
6+
Set up two alternating colours, great for festive lights!
77
"""
88

99
# Set how many LEDs you have

examples/plasma2040/level.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import plasma
1010

1111
"""
12-
A simple balancing game, where you use the MSA301 accelerometer to line up a band with a goal on the strip.
12+
A balancing game, where you use the MSA301 accelerometer to line up a band with a goal on the strip.
1313
1414
This can either be done using:
1515
- Angle mode: Where position on the strip directly matches the accelerometer's angle.

examples/plasma_stick/README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,20 @@ i2c = machine.I2C(sda=machine.Pin(4), scl=machine.Pin(5))
6666

6767
## Basic Examples
6868

69+
These examples will also work on Plasma 2040 and Plasma 2350 (W).
70+
6971
### Alternating Blinkies
7072

7173
[alternating-blinkies.py](alternating-blinkies.py)
7274

73-
A simple example with two alternating colours, great for festive lights!
75+
Demonstrates animating two alternating colours, great for festive lights!
7476

7577
### Fire
7678

7779
[fire.py](fire.py)
7880

79-
A simple 🔥 fire effect example 🤘 (warning, flashy).
81+
A 🔥 fire effect 🤘 (warning, flashy). Uses randomisation to animate the hue
82+
and brightness.
8083

8184
### Moon
8285

@@ -158,6 +161,8 @@ Reads the temperature from a [BME280 breakout](https://shop.pimoroni.com/product
158161

159162
## Wireless Examples
160163

164+
These examples will also work on Plasma 2350 W or Plasma 2350 with an RM2 module.
165+
161166
The wireless examples need `secrets.py` from the `examples` directory to be saved to your Pico W. Open up `secrets.py` in Thonny to add your wifi details (and save it when you're done).
162167

163168
- [micropython/examples/common](../../examples/common)

examples/plasma_stick/alternating-blinkies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import plasma
44

55
"""
6-
This super simple example sets up two alternating colours, great for festive lights!
6+
Set up two alternating colours, great for festive lights!
77
"""
88

99
# Set how many LEDs you have

examples/plasma_stick/fire.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import plasma
55

66
"""
7-
A basic fire effect.
7+
A fire effect.
88
"""
99

1010
# Set how many LEDs you have

examples/plasma_stick/pulse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import plasma
44

55
"""
6-
Simple pulsing effect generated using a sine wave.
6+
Pulsing effect generated using a sine wave.
77
"""
88

99
# Set how many LEDs you have

examples/sparkles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
led_offset *= 3
2929
led_offset += t
3030

31-
# A simple sine with a 2x period, shifted to 0 to 254
31+
# A sine with a 2x period, shifted to 0 to 254
3232
# This provides a brightness cycling effect phase-locked to the LEDs
3333
br = (math.sin(t / 2 + led_offset) + 1) * 127
3434

0 commit comments

Comments
 (0)