caternuson
38d83acfa7
change comment
2022-10-30 08:37:56 -07:00
Anne Barela
e39f1f9bed
Merge pull request #2313 from AhsenBaig-forks/main
...
Thank you for your contribution!
2022-10-27 17:44:47 -04:00
Ahsen Baig
d13af31582
Create README.md
...
CircuitPython 2FA TOTP Authentication Friend with a link to the tutorial.
2022-10-27 14:04:05 -07:00
Anne Barela
0e1dd5dd7d
Merge pull request #2312 from adafruit/magic_band_reader
...
Adding code for magic band reader
2022-10-25 10:48:30 -04:00
Noe Ruiz
33eec6717e
update fix for plynt
...
update fix for plynt
2022-10-25 10:26:16 -04:00
Noe Ruiz
a03599ec47
Adding code for magic band reader
...
Adding code for magic band reader
2022-10-25 10:21:48 -04:00
Anne Barela
45067fff0c
Merge pull request #2311 from adafruit/halloween_neon_signs
...
Adding halloween neon code
2022-10-24 12:53:26 -04:00
Noe Ruiz
6bc9796cae
Pylint fix
...
Pylint fix
2022-10-24 12:42:02 -04:00
Noe Ruiz
953069ffe6
Adding halloween neon code
...
Adding halloween neon code
2022-10-24 12:33:42 -04:00
Anne Barela
30d0e99c6b
Merge pull request #2310 from adafruit/bat_update
...
Updating code
2022-10-24 08:51:40 -04:00
BlitzCityDIY
2acb1387d1
Updating code
...
Changing attributes for the wing angles to variables rather than hard coding
2022-10-24 08:41:13 -04:00
Anne Barela
cf4ef8438d
Merge pull request #2309 from jepler/update-actions-setup-python
...
bump version of setup-python to fix deprecation warning
2022-10-23 16:31:01 -04:00
f9bc9aafe4
bump version of setup-python to fix deprecation warning
2022-10-23 15:20:39 -05:00
Anne Barela
0816fb5a05
Merge pull request #2308 from adafruit/batty_bat
...
Adding code for CPX bat
2022-10-20 17:48:36 -04:00
BlitzCityDIY
81cf805514
Adding code for CPX bat
...
Adding code for Circuit Playground Express bat. Uses two servos to flap wings. Onboard NeoPixels display the comet animation
2022-10-20 16:42:04 -04:00
Anne Barela
0e74c01bd0
Merge pull request #2307 from makermelissa/main
...
Rearranged function order to make them easier to explain in guide.
2022-10-19 18:01:45 -04:00
Melissa LeBlanc-Williams
6e6d6033af
Rearranged function order to make them easier to explain in guide.
2022-10-19 14:35:50 -07:00
Anne Barela
13c6593bd8
Merge pull request #2306 from kattni/fix-license-ci
...
Fix licensing to resolve CI issue.
2022-10-19 15:58:00 -04:00
Kattni Rembor
f527a921b9
Fix licensing issue, move file.
2022-10-19 15:32:46 -04:00
Kattni
e5558b1870
Merge pull request #747 from dcbriccetti/shorter-cap-touch
...
Create a shorter CapTouch program
2022-10-17 15:46:48 -04:00
Anne Barela
d82be86c44
Merge pull request #2305 from jepler/sdfat-speculative-fix
...
speculative fix for example build failure
2022-10-16 16:36:57 -04:00
f4fd85dd75
speculative fix for example build failure
2022-10-16 15:02:19 -05:00
Anne Barela
bbef0a9e9b
Merge pull request #2304 from jedgarpark/split-ortho-keeb
...
first commit code and keymap config file
2022-10-14 20:16:34 -04:00
John Park
8b0d00a2d1
first commit code and keymap config file
2022-10-14 16:41:01 -07:00
Anne Barela
b0430b2a5a
Merge pull request #2303 from adafruit/picow_cp_wifi
...
Updating twitter example
2022-10-14 16:13:52 -04:00
BlitzCityDIY
8cef06883f
Updating twitter example
...
Updating some comments on the twitter example
2022-10-14 15:32:11 -04:00
Anne Barela
4764537ca1
Merge pull request #2302 from adafruit/picow_cp_wifi
...
Pico W WiFi examples
2022-10-14 11:44:50 -04:00
BlitzCityDIY
4b3c0110d4
Pico W WiFi examples
...
Adding WiFi examples for the Pico W: basic connection test, requests, JSON feed, Twitter feed, Adafruit IO and Azure IoT Central
2022-10-14 11:09:39 -04:00
Anne Barela
fe196e9519
Merge pull request #2301 from adafruit/servo_barometer
...
Updating CLUE barometer
2022-10-12 16:28:56 -04:00
BlitzCityDIY
4913b0bab7
Updating CLUE barometer
...
Updating code for CLUE barometer
2022-10-12 15:09:06 -04:00
Anne Barela
10d84a3158
Merge pull request #2300 from adafruit/TheKitty-patch-1
...
Create code.py for Door Freezer Alarm
2022-10-11 15:29:02 -04:00
Anne Barela
ba26000c3c
Update code.py
2022-10-11 15:01:42 -04:00
Anne Barela
9f95041b0a
Updates per @danh
2022-10-11 14:56:07 -04:00
Anne Barela
0eef868bca
Correct lint issues
...
Feather_Freezer_Alarm/code.py:180: Unnecessary parens after 'if' keyword (superfluous-parens)
Feather_Freezer_Alarm/code.py:252: Unnecessary parens after 'if' keyword (superfluous-parens)
Feather_Freezer_Alarm/code.py:79: Unused argument 'client' (unused-argument)
Feather_Freezer_Alarm/code.py:180: Comparison 'prealarm == True' should be 'prealarm is True' if checking for the singleton value True, or 'prealarm' if testing for truthiness (singleton-comparison)
Feather_Freezer_Alarm/code.py:197: Comparison 'alarm1 == False' should be 'alarm1 is False' if checking for the singleton value False, or 'not alarm1' if testing for falsiness (singleton-comparison)
Feather_Freezer_Alarm/code.py:197: Comparison 'alarm2 == False' should be 'alarm2 is False' if checking for the singleton value False, or 'not alarm2' if testing for falsiness (singleton-comparison)
Feather_Freezer_Alarm/code.py:197: Comparison 'prealarm == False' should be 'prealarm is False' if checking for the singleton value False, or 'not prealarm' if testing for falsiness (singleton-comparison)
Feather_Freezer_Alarm/code.py:236: Comparison 'alarm1 == False' should be 'alarm1 is False' if checking for the singleton value False, or 'not alarm1' if testing for falsiness (singleton-comparison)
Feather_Freezer_Alarm/code.py:243: Comparison 'alarm2 == False' should be 'alarm2 is False' if checking for the singleton value False, or 'not alarm2' if testing for falsiness (singleton-comparison)
Feather_Freezer_Alarm/code.py:11: Unused import neopixel (unused-import)
Feather_Freezer_Alarm/code.py:16: Unused import supervisor (unused-import)
2022-10-11 14:19:36 -04:00
Anne Barela
0e9cf83a25
Create code.py
2022-10-11 13:55:50 -04:00
Anne Barela
0e9e86d1cb
Merge pull request #2298 from adafruit/servo_barometer
...
Adding code for CLUE servo barometer
2022-10-07 13:52:16 -04:00
BlitzCityDIY
b64659b1fc
Adding code for CLUE servo barometer
...
Adding code for the CLUE Servo Barometer project. Servo's range is mapped to barometric pressure range. CLUE's display shows temperature and pressure readings. A button and B button determine if the readings are shown in US or imperial units
2022-10-07 13:32:25 -04:00
Paint Your Dragon
d966ddc962
Merge pull request #2297 from PaintYourDragon/main
...
Small fix to Arduino Cheekmate
2022-10-05 17:29:31 -07:00
Paint Your Dragon
4981e89018
Merge branch 'adafruit:main' into main
2022-10-05 17:11:01 -07:00
Phillip Burgess
e45faef9a4
Cheekmate: use unsigned amplitude
...
…else no buzz w/example value
2022-10-05 17:10:16 -07:00
Anne Barela
1696e6c0d9
Merge pull request #2296 from adafruit/pyleap_clue_badge
...
Adding code for PyLeap CLUE badge
2022-10-05 15:43:28 -04:00
BlitzCityDIY
d89ac3e584
Adding a # for SPDX
...
I think this will fix the error hopefully
2022-10-05 15:27:01 -04:00
BlitzCityDIY
a34dd6aa33
Adding code for PyLeap CLUE badge
...
Adding code for the PyLeap CLUE conference badge. Display is flipped for use with a lanyard.
2022-10-05 15:16:29 -04:00
Paint Your Dragon
97ed01b2c5
Merge pull request #2291 from PaintYourDragon/main
...
Add Cheekmate project (CircuitPython + Arduino)
2022-10-04 16:47:08 -07:00
Anne Barela
87fee11042
Merge pull request #2295 from adafruit/led-noodle-lantern
...
adding code for led noodle lantern
2022-10-04 14:54:54 -04:00
Phillip Burgess
0fc8b49dd5
Just a comment change to try to force full CI do-over
2022-10-04 11:52:54 -07:00
Noe Ruiz
2330090e63
pylint fix for led noodle lantern
...
pylint fix for led noodle lantern
2022-10-04 14:27:15 -04:00
Noe Ruiz
b56b9b4916
adding code for led noodle lantern
...
adding code for led noodle lantern
2022-10-04 14:05:26 -04:00
Paint Your Dragon
126f63698f
Merge branch 'adafruit:main' into main
2022-10-04 10:51:18 -07:00
Anne Barela
dcc982461e
Merge pull request #2294 from adafruit/PaintYourDragon-patch-2
...
Override ArduinoHttpClient library
2022-10-04 12:58:53 -04:00