Skip to content

Commit d09c0cb

Browse files
authored
Merge pull request #22 from caternuson/pillow_text
Add banner text for PIL requirement
2 parents 3f70118 + 7fd312b commit d09c0cb

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

examples/bonnet_buttons.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
# THE SOFTWARE.
2121

22+
# This example is for use on (Linux) computers that are using CPython with
23+
# Adafruit Blinka to support CircuitPython libraries. CircuitPython does
24+
# not support PIL/pillow (python imaging library)!
25+
2226
import board
2327
import busio
2428
from digitalio import DigitalInOut, Direction, Pull

examples/pillow_animate.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
# THE SOFTWARE.
2121

22+
# This example is for use on (Linux) computers that are using CPython with
23+
# Adafruit Blinka to support CircuitPython libraries. CircuitPython does
24+
# not support PIL/pillow (python imaging library)!
25+
2226
import math
2327
import time
2428
from board import SCL, SDA

examples/pillow_images.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
# THE SOFTWARE.
2121

22+
# This example is for use on (Linux) computers that are using CPython with
23+
# Adafruit Blinka to support CircuitPython libraries. CircuitPython does
24+
# not support PIL/pillow (python imaging library)!
25+
2226
from board import SCL, SDA
2327
import busio
2428
from PIL import Image

examples/pillow_shapes.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2020
# THE SOFTWARE.
2121

22+
# This example is for use on (Linux) computers that are using CPython with
23+
# Adafruit Blinka to support CircuitPython libraries. CircuitPython does
24+
# not support PIL/pillow (python imaging library)!
25+
2226
from board import SCL, SDA
2327
import busio
2428
from PIL import Image, ImageDraw, ImageFont

0 commit comments

Comments
 (0)