#live-broadcast-chat
1 messages ยท Page 162 of 1
@haughty quiver set the encoding to UTF-8., maybe the terminal io font only contains ascii characters.
I could be wrong about that.. Havn't used anything but helvetica
When I was translating programs from English to Japanese we used to have to construct characters using individual glyphs to construct whole characters.
@rapid hornet - just catching up on your Aug-14 deep dive - you talked about forks of micropython -
what's the status of your fork? "This branch is 4569 commits ahead, 2348 commits behind micropython:master." https://github.com/tannewt/circuitpython , compared also with adafruit's "This branch is 7773 commits ahead, 2348 commits behind micropython:master." https://github.com/adafruit/circuitpython/ ( I guess being this "behand" makes it hard to catch up - or are you "selectively" behind - showing how circuitpython has diverged?
@timid plover I don't use my fork's master branch at all, just the feature branches
adafruit/circuitpython/main is CircuitPython
we do hope to update the version of mp we're based on after 6.0.0
I forget to look at the other branches ๐
native_wifi is my active branch for the esp32s2 stuff
( I was out of town last week - and I wanted to "catch up" in anticipation of another deep dive on Friday )
so https://github.com/tannewt/circuitpython/tree/native_wifi is also 2348 behind micropython:master ๐
@rapid hornet - is your native_wifi CP5, not CP6? -- I'm seeing 5.0.0 - is that what you see too?
$ cat e:/boot_out.txt
Adafruit CircuitPython 5.0.0-beta.0-2632-g80b15f6b3 on 2020-08-21; Saola 1 w/Wrover with ESP32S2
@timid plover it's 6. make sure you pull tags down
new to me ๐ ( git fetch --all --tags ) ?
replies "Already up to date."
curious what tool needs this?
I just did the regular "clone" as "suggested" from github - I see it git pull tags all mentioned here: https://github.com/adafruit/circuitpython/pull/3035
also mentioned on the micropython side: https://forum.micropython.org/viewtopic.php?t=4164
git pull git pull --tags git submodule update --init make clean
maybe you need them from the circuitpython repo?
maybe I haven't pushed them to my fork
did a clean and rebuild - still get Adafruit CircuitPython 5.0.0-beta.0-2632-g80b15f6b3 on 2020-08-21; Saola 1 w/Wrover with ESP32S2
@rapid hornet - just to double-check - which artifact do you program ( I think you are still flashing through esptool.py, right)
assumed I needed to write firmware.bin
I think @ornate coyote has also built - has anyone else here rebuild from the native_wifi branch ( https://github.com/tannewt/circuitpython.git )
@rapid hornet learning more by looking at ../../py/makeversionhdr.py, I see that the tag seems to come from
git describe --dirty --always --tags which reports
5.0.0-beta.0-2632-g80b15f6b3
@rapid hornet - could you have any wifi test scripts/fragments - ( or do I need to read the source and documentation ๐ )
I guess another way to look at this is via
import os os.uname()
(sysname='esp32s2', nodename='esp32s2', release='5.0.0', version='5.0.0-beta.0-2632-g80b15f6b3 on 2020-08-21', machine='Saola 1 w/Wrover with ESP32S2')
@timid plover I use the flash target in the makefile
import ipaddress
import wifi
import socketpool
import time
import adafruit_requests
import ssl
import espidf
print(espidf.heap_caps_get_total_size())
print(espidf.heap_caps_get_free_size())
print(espidf.heap_caps_get_largest_free_block())
for network in wifi.radio.start_scanning_networks():
print(network, network.ssid, network.rssi, network.channel)
wifi.radio.stop_scanning_networks()
print(wifi.radio.connect("ssid", "password"))
print("ip", wifi.radio.ipv4_address)
ipv4 = ipaddress.ip_address("8.8.4.4")
print(ipv4)
print("ping", wifi.radio.ping(ipv4))
pool = socketpool.SocketPool(wifi.radio)
requests = adafruit_requests.Session(pool, ssl.create_default_context())
response = requests.get("http://wifitest.adafruit.com/testwifi/index.html")
print(response.status_code)
print(response.text)
# response = requests.get("https://circuitpython.org")
# print(response.status_code)
response = requests.get("https://httpbin.org/get")
print(response.status_code)
print(response.json())
response = requests.get("https://httpbin.org/get")
print(response.status_code)
print(response.json())
response = requests.get("https://adafruit.com")
print(response.status_code)
print(response.json())
print("done")```
I need to push my requests version
thanks @rapid hornet - I manually installed your .mpy into /lib - single stepping via the repl - got as far as
pool = socketpool.SocketPool(wifi.radio) Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: SocketPool can only be used with wifi.radio.any clues? -
`>>> dir(wifi.radio)
['class', 'connect', 'enabled', 'ipv4_address', 'mac_address', 'ping', 'start_scanning_networks', 'stop_scanning_networks']dir(socketpool)
['class', 'name', 'Socket', 'SocketPool']`Reading through shared-bindings/socketpool and ../../ports/esp32s2/common-hal/socketpool now
what's the difference between the similarly named files in ../../ports/esp32s2/common-hal/socketpool:
Socket.c Socket.h SocketPool.c SocketPool.h init.c init.hand circuitpython/shared-bindings/socketpool:
Socket.c Socket.h SocketPool.c SocketPool.h init.c init.hI see the error message:
`+void common_hal_socketpool_socketpool_construct(socketpool_socketpool_obj_t* self, mp_obj_t radio) {
- if (radio != MP_OBJ_FROM_PTR(&common_hal_wifi_radio_obj)) {
mp_raise_ValueError(translate("SocketPool can only be used with wifi.radio."));- }
+}`
@rapid hornet : maybe you can add "how modules get added to the circuitpython library to the discussion agenda ๐
( both the builtin ones like SocketPool, as well as the .py/.mpy and how they flow through github to eventually join the library bundle )
?showtimes
3D Hangouts - 11am ET Wednesdays
Show & Tell - 7pm ET Wednesdays
Ask an Engineer - 8pm ET Wednesdays
Desk of Ladyada - Random hacker times
John Park's Workshop - 4pm ET Thursdays
Deep Dive w/Scott - 5pm ET Fridays
less than 24 hours ago - I build my first circuitpython from source using WSL 2. ( too bad WSL 2 doesn't seem to support serial port support - so I need to download from using esptool.py from windows )
Live on Twtich!
Hi @rapid hornet
I remember you mentioning the GameBoy FPGA clone -- have you looked into their SNES FPGA clone?
Cat OK
MiSTer ...
Adafruit Industries, Unique & fun DIY electronics and kits : - Tools Gift Certificates Arduino Cables Sensors LEDs Books Breakout Boards Power EL Wire/Tape/Panel Components & Parts LCDs & Displays Wearables Prototyping Raspberry Pi Wireless Young Engineers 3D printing NeoPixe...
Yay
If you arrived here and Scott hasnt he was here yesterday. Engage time travel mode
hmm, inception ,posting the discord link on the discord channel
dive away
yes, there that
the apple approach, just look forwards
psram would be nice, so nice.
Week has been good. Finally got back to the observatory last night, first time since January.
great idea! ( auto cat cam )
(I guess you don't read twitch chat) -> I did manage to distract you for a while today sorry... not sorry @rapid hornet ๐
That is ok I can send my snarky comments here too. ๐
this is the best chat.
0xBAD0DEADBEEF
I see you get v6, I still get V5 version='5.0.0-beta.0-2632-g80b15f6b3 on 2020-08-21' - I guess adding the image cause the message to post early
there was a ti dsp that would spit back BAD in the i2c when it had issues
AWW :3
maybe you also need motion detect - for cat cam interrupts ๐
During the ESP-IDF startup, external RAM is mapped into the data address space, starting at address 0x3F800000 (byte-accessible). The length of this region is the same as the SPI RAM size (up to the limit of 4 MB).
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
then why would your output have a 3f8 address?
16 mega bits - is only 2 mega bytes, right? ( should it be 4 ? )
ok - only 2 MB - thanks
( ah - I see now - 4 MB Flash ๐ )
confirm your 2MB spiram here: https://www.espressif.com/sites/default/files/documentation/espressif_products_ordering_information_en.pdf
I'll allocate a 2 MB block cause I can and complain I have no memory of course
would some of it be useful as a "ram disk" file system
May be good to store data if you don't have a cell/radio/etc type connection and mass upload later on
I've never seen someone sit in a chair like that.
would we learn something by looking at the assembly code to see why "bad" is getting into A10 ? - is the BAD address a magic number - how was it getting loaded?
LOL you'd have to keep moving just to be able to afford that. Like, staying at work.
yes, i casued a neck issue using the wrong chair for a few years.
and a chair lasts almost forever.
lol
I'm not a huge fan of working from home but my chair here is so much better then at work
i had a great chair at work. A Leap i think. i wanted to smuggle it out when i left
Cant you write some C code using the idf and see what happens
What I use now. A Herman MIller Embody. its nice
i switch mousing hands as well.
RU using ps_malloc() rather than malloc()
I need to read up on Colemak - thanks for the mention
https://colemak.com/
Colemak is a keyboard layout designed for touch typing in English. It is designed to be a practical alternative to the QWERTY and Dvorak keyboard layouts.
that would mess up my VI keystrokes HJKL ๐
What kind of keyboard is that?
100% on getting quality equipment -- a good keyboard, mouse, monitor, and chair will outlast multiple computers.
One negative: you'll never be able to use "normal" gear comfortably ever again.
My keyboard has keycaps without letters, so it's kinda nice to switch from qwerty to dvorak.
The funny thing is, in why did I leave it the last time? Oh dear...
I feel like I would be locked out of all my accounts since I rely on muscle memory for all my passwords.
I used to rely on muscle memory. Then, after vacations, I forgot the encryption password for the whole machine. I spent like two days trying to remember the password, then like an extra day trying to do a brute force HID attack with a circuitplayground classic, with the part of the password I tough I remembered, and guessing the one that I didn't...
At the end I had to reinstall. (always thankful for backups...)
that's a genius idea, but it's alarming that it doesn't limit the number of password attempts.
years ago I used blueproximity. So when the computer "hears" the bluetooth id of my cellphone, it unlocked auto. But that is only as secure as not having a screensaver, as bluetooth ids can be copied and cloned.
I was nice. The computer 'knew' when I was close and it reacted to me.
So 0xbad00bad is a harware result?
I see "0xbad00bad is the read result for an unmapped page"
in https://www.esp32.com/viewtopic.php?f=12&t=4832
I guess I should read the hardware manual ?
Espressif ESP32 Official Forum
in staring at the Micropython port to esp32 it seems that the address is correct. mp_task_heap = (uint8_t *)0x3f800000;
Hey @rapid hornet -- just joined the stream, 6:15am here in Singapore, please could you share a quick summary of where ESP32-S2 is at? I'm still tinkering with the TTGO board, my Saola board arrives today.
I wish there was a esp32-s2 ttgo watch...
where do we get the new adafruit_requests module from or how do we build it?
Amazing, thanks for the progress update!
thanks
Any news from Limor about the pin selection so that RGBmatrix will work well and possibly one of the FeatherWing can be reused.
new requests worked for me - see link posted a few hours ago here
reading the restrictions in https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/external-ram.html
When flash cache is disabled (for example, if the flash is being written to), the external RAM also becomes inaccessible; any reads from or writes to it will lead to an illegal cache access exception. This is also the reason why ESP-IDF does not by default allocate any task stacks in external RAM (see below).
there are other restrictions too!
I need to test new requests with some large covid json files.
The pyportal code I have right now has worked for small countries like CR, but when I try with US, the file is so large that my pyportal goes puff.
you might learn something as you add the feather s2 support
have you seen Thermaltake Cyberchair E500
Is there any current circuitpython chip that can also handle charging current on usb-3?
I'm building a guitar pedal that uses a Clue to control it's pots. Would be cool to get 9V from a usb-c
this is the chair i want.
@gusty wedge it may be easier to get a USB PD decoy module to get you the 9V
And btw, if anyone speaks spanish, I'll recommend the videos that Electronic Cats from MX has been doing.
There a nice series of females making hardware, but another video from last week was about grabbing power from usb. They did mentioned a couple of STMs and using additional chips.
And just for good measure, @rapid hornet you don't have "modem-manager" installed?
๐ฅ I may have succeed to do my first "git rebase" and conserving the blame on change from the other PR that went before mine... but the review of it will tell me if I was really successfull.
I wanted to order a board from electronic cat. But the price for getting the board from Mexico to Europe was excessif.
@wind spoke I'll talk to the owner and see if they have some alternative shipping for this sort of cases. If not, I need to send a package to a friend in europe in the next weeks. I could ship the board to my friend with the package and then ask him to re-send it to you.
Oh this is so cool, I just got a package delivered, and it seems it's a Fluff M0 from @brazen grove. What a cool board...
I believe it was for the BAST Wifi that has an ESP32S2 board they made in Feather format. Do not worry for me, I can survive without it, I can wait for Adafruit to make a Feather. I have enough hardware to play with.
@gusty wedge that took a while
Well, it's always a good idea to support good companies that make hw. I feel that Electronic Cats is being very adafruity, in the sense that they are being nice to the community, they are creating content for all to learn how to make board, helping to advance people with their platform, etc.
any hints about about
pool = socketpool.SocketPool(wifi.radio) Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: SocketPool can only be used with wifi.radio.
as you create the PR
loud and clear
I never thought I'd be bragging about my mom cutting my hair, but it looked way better than everyone else's overgrown hair on the first day of school.
I was walking through the test code you shared - that's as far as I got
I just used the REPL - just one step at a time - it was great to see the wifi scan - and other features work !
I'll try the full code in code.py ....
we can't see ๐
interesting - get further from code.py!
`Auto-reload is on. Simply save files over USB to run them or enter REPL to disable.
code.py output:
158696
50788
46916
<Network> DIRECT-cb-HP M118 LaserJet -22 7
<Network> NETGEAR18 -58 7
True
ip 192.168.1.27
8.8.4.4
ping 0.045
200
This is a test of Adafruit WiFi!
If you can read this, its working :)
200
{'url': 'https://httpbin.org/get', 'headers': {'User-Agent': 'Adafruit CircuitPython', 'Host': 'httpbin.org', 'X-Amzn-Trace-Id': 'Root=1-5f405267-92726ac675ba0f79a59f86df'}, 'args': {}, 'origin': '67.170.125.178'}
200
{'url': 'https://httpbin.org/get', 'headers': {'User-Agent': 'Adafruit CircuitPython', 'Host': 'httpbin.org', 'X-Amzn-Trace-Id': 'Root=1-5f40526a-82169cf87b2726d0cb023da8'}, 'args': {}, 'origin': '67.170.125.178'}
Traceback (most recent call last):
File "code.py", line 45, in <module>
File "adafruit_requests.py", line 464, in get
File "adafruit_requests.py", line 414, in request
File "adafruit_requests.py", line 377, in _get_socket
OSError: Unhandled ESP TLS error 32512 0 800d`
but at least no ValueError: SocketPool can only be used with wifi.radio. !!!
maybe someone else can try to single step the code in the REPL ?
do you have the code? i could try it.
of course i might have to reflash my saola.
see earlier post ( maybe 4 - 6 hours ago ) - let me scroll back ๐
i was being lazy
lets see, probably have to reflash as my saola is about 2 weeks old.
In a future stream it would be also cool to push the pr at the start, and have us test like crazy ๐
I never found the 0xbad00bad documented in the technical reference manual yet - just that one mention of an unmapped page on the esp support page
Earlier you asked "anyone want to do a release today?" .. are you talking about 6.0.0-alpha3 ?
๐
quick - submit an issue - so you can "fix" it and check off ๐
Watch show and tell. It's pretty diverse and eclectic, and you cannot get a better bunk of people.
advent calendar
Advent of Code
@open girder are there any guidelines or docs to Circuit Python memory layout/choices etc..
That's great I will take a look at some of your earlier deep dives maybe
very helpfull
thanks
Thanks Scott for another enjoyable stream!
And like the video :รพ
Thanks Scott. Have a good weekend.
Thanks Scott. Good stream!
fantastic - thanks again Scott!
Thanks Scott.
you too!
thanks all!
@rapid hornet btw, this is the other cat named spook.
https://twitter.com/BillyonBass/status/1296952977383661573
puurfect.
@rapid hornet Definitely a different behavior when running the test script when running from the REPL
Still - it's a good script to start testing with.
would be nice to observe some of the internals - and resources used ( and perhaps lost ) -
is esp32s2
microcontroller.cpu.frequency
supposec to be0?
DESK OF LADYADA - AAA Battery Holders https://youtu.be/FM3ZaN0yvGY
We love AAA batteries for powering our electronics - they come in rechargeable types, are thin, inexpensive, and available anywhere in the world. For our new design we need a 2 x AAA holder that can solder into a PCB. Let's learn how to search for battery holders on Digi-Key!
...
Good evening all you wonderful folks!
Speaking of Stemma QT and boards, the (HT16K33) LED backpacks would benefit!
Are you aware of any neopixel compatible leds where the emitter faces the board to be defused by the substrate or shine through a hole in the pcb?
@timber spear will get to this question after the searchin' segment
We love AAA batteries for powering our electronics - they come in rechargeable types, are thin, inexpensive, and available anywhere in the world. For our new design we need a 2 x AAA holder that can solder into a PCB. Let's learn how to search for battery holders on Digi-Key!
Order today, ships today. 2468 โ Battery Holder (Open) AAA 2 Cell PC Pin from Keystone Electronics. Pricing and Availability on millions of electronic components from Digi-Key Electronics.
try sunled?... I think they are bottom mount for shining thru hole in PCB/substrate.. @timber spear
3D Hangouts - 11am ET Wednesdays
Show & Tell - 7pm ET Wednesdays
Ask an Engineer - 8pm ET Wednesdays
Desk of Ladyada - Random hacker times
John Park's Workshop - 4pm ET Thursdays
Deep Dive w/Scott - 5pm ET Fridays
for battery holder well i got idea why not find the part to fix one of maglights what have 4 AAA in cylinder shape and both side have PCB
โ๏ธ
Good morning all you wonderful folks. Hope the week is treating you well.
Stream is up on Twitch, no audio yet.
Bleeps and bloops are a go!
yay, thanks for the check @waxen thistle
#3DHangouts Episode #293 LIVE โ Torches, PCBs and Skeletons https://www.youtube.com/adafruit/live
My pleasure ๐
good morning folks!
Subscribe to Adafruit Newsletters https://www.adafruitdaily.com/
Audio is back
Audio cut out again.... ๐ฆ
Wooo! Maker Charades!
[be patient everyone -- live broadcast gremlins are causing technical difficulties] 
we'll be right back folks ๐
Adafruit is open, safely ... and shipping orders at this time within 1 to 2 business days https://www.adafruit.com/opensafely
Adafruit Industries, Unique & fun DIY electronics and kits : - Tools Gift Certificates Arduino Cables Sensors LEDs Books Breakout Boards Power EL Wire/Tape/Panel Components & Parts LCDs & Displays Wearables Prototyping Raspberry Pi Wireless Young Engineers 3D printing NeoPixe...
Good morning!
good morning to all
Putting satisfying their hunger in front of the show apparently has not paid off very well
Sometimes you're the lightning bolt, sometimes you're lightning rod.
#3DPrinting projects on Adafruit Learning System Learn Guide:
https://learn.adafruit.com/neopixel-flame-torch/
@rocky reef Neither Youtube or Twitch have come back up yet.
nor
noe twich has but no youtube
.....hmm. I'm getting no Twitch at all. Very odd.
Just had twitch show up
tunes and tones on twitch
veja du/
youtube just came up
Latest Guides on: https://learn.adafruit.com/guides/latest
Code on GitHub
https://github.com/adafruit/Adafruit_Learning_System_Guides/blob/master/NeoPixel_Gemma_Torch/code.py
Adafruit GEMMA M0
https://www.adafruit.com/product/3501
Adafruit 5V MiniBoost
https://www.adafruit.com/product/4654
7 NeoPixel Jewel
https://www.adafruit.com/product/2226
5VDC Fan
https://www.digikey.com/product-detail/en/cui-devices/CFM-5010-03-10/102-4012-ND/6194920
2200mAh Battery
https://www.adafruit.com/product/1781
The Adafruit Gemma M0 is a super small microcontroller board, with just enough built-in to create many simple projects. It may look small and cute: round, about the size of a quarter, with ...
This adorable little board will come in very handy whenever you need a good amount of 5V power. It's the size of a linear regulator, but it's actually a mini-booster! Input 2-5VDC on ...
Be the belle of the ball with the NeoPixel Jewel! ย We fit seven of our tinyย 5050 (5mm x 5mm) smart RGB LEDs onto a beautiful, roundย PCB with mounting holes and a chainable ...
Order today, ships today. CFM-5010-03-10 โ Fan Tubeaxial 5VDC Square - 50mm L x 50mm H Ball 16.1 CFM (0.451mยณ/min) 2 Wire Leads from CUI Devices. Pricing and Availability on millions of electronic components from Digi-Key Electronics.
I'm getting serious Rey's staff vibes from that handle ๐
3D Parts Library on GitHub
https://github.com/adafruit/Adafruit_CAD_Parts
I'm a real fan of this project!
What filament do you all use? And will Adafruit sell filament?
the brown is Fillamentum https://amzn.to/2EyLCNk
dark grey from amazon basics https://amzn.to/3jjTSQ2
CircuitPython Downloads: https://circuitpython.org/
https://www.youtube.com/adafruit/live #3DHangouts
did you try using pinking shears? did/would that help?
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
we'll try these out
How about the rainbow celephane that Erin St Blaine uses in her projects
Vary the color and brightnes of the neopixels?
designed to resist fraying
Adafruit Fritzing Library parts https://github.com/adafruit/Fritzing-Library/tree/master/parts
late to the party but good morning folks
A maker is never early nor late -- she arrives exactly at the time she intends.
looks super cool!
Layer by Layer CAD Tutorials Playlist:
https://www.youtube.com/playlist?list=PLjF7R1fz_OOVsMp6nKnpjsXSQ45nxfORb
At this current rate, the next 50 will be in a few short months ๐
the stemma speaker is my favorite
Skeleton Candle Holder โ magiczztab
https://www.thingiverse.com/thing:1342681
Thanks for another fun show!
great show!
thanks for a great show!
great job guys
yay thanks folks cya tonight ๐
thanks for hanging out folks!
Good evening all you wonderful folks! I hope your week has been amazing so far! 
Good evening! Time for the best mid-week break there is
good evening folks
good evening everyone
kjjkko
Link to join to show and share your project: https://streamyard.com/6nh89f2yqz
fills up fast
WE ARE LIVE! SHOW AND TELL! https://youtu.be/xEWfCK2DmU0
Live on Twitch!
Hi everyone!
Mornin' all
What's the deal with show'n'telling products we're going to sell ourselves...is that ok?
yup, that's ok
@clever summit I've gone to bed ๐
hi @clever summit !
WHAT! You lazy bast.... ๐
Though Emma is up and watching TV....she couldn't sleep...
Hmmm...I'll get up...could be fun to show some stuff...
I know the temperature I built a weather station ๐
@gaunt plume elm27 is a car to can bus interface used by most OBD2 controllers
A Controller Area Network (CAN bus) is a robust vehicle bus standard designed to allow microcontrollers and devices to communicate with each other's applications without a host computer. It is a message-based protocol, designed originally for multiplex electrical wiring within...
Sorry @rapid hornet can't participate in your next live stream, we are having a kickoff. You will need to unit test troll yourself!
Looking forward to that @haughty quiver
haha, ok. the september 11th one will be september 9th for cp day
Awesome Vulfpeck t-shirt, @haughty quiver !
Oh, a wednesday! Excellent.
lol, ๐ฏ
Right on, thanks @viral sail
Cool astro project.
Here's where to get the Moon phase info https://svs.gsfc.nasa.gov/4768
Dial-A-MoonMonth: Day: UT Hour: init_user_date();show_moon_image(); show_moon_info();
Click on the image to download a high-resolution version with feature labels and additional graphics. Hover over the image to reveal the animation frame number, which can be used to locat...
This project shoots for the moon!
Yay dragons.
I love the split ergo board!
@balmy tinsel I like it too! If you're up for a DIY project, you can get the PCBs here:
https://keyhive.xyz/shop/lily58
https://github.com/keyhive/build_guides/blob/master/lily58pro.md Now offering the version with an encoder on one side. Comes with a rotary encoder and knob. Lily58 Pro is a 58 key split keyboard with OLEDs and supports an LED strip. The plates are made of PCB material....
Thanks I'll check it out!
You'd have to also get key switches, key caps, and MCUs to convert it from a fidget toy into a keyboard, but that also means it's pretty customizable
Let's keep making CircuitPython "too easy" ๐
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
watching the Adafruit Show & Tell makes me think .. "damn, its been a week already? I'm still working on last weeks projects"
@wispy linden word
Rock on @split gazelle ๐ธ
I've been meaning to be on Show & Tell for about 2 months now...maybe tonight is the night! (or today is the day...depending where you are)
That's real cool @split gazelle cool to see those projects interact
for those interested here is the Pi USB MIDI host documentation: https://neuma.studio/rpi-midi-complete.html
and the pi usb webcam documentation: http://www.davidhunt.ie/raspberry-pi-zero-with-pi-camera-as-usb-webcam/
I'll have to look if the IP camera software will work with the older RPi camera -- I have a few of those sitting around.
nice work @lilac tusk !
Thanks! ๐
๐ฆ ๐ 
msp432 feather repo --> https://github.com/skerr92/msp432-feather
@lilac tusk what do you plan on putting on the fpga?
it's mostly to add expanded capabilities for feathers. It can be programmed over SPI so it's just a matter of converting binaries into header files and feeding the bits over SPI ๐
Ooo! Another ruler! ๐
There are a few people who have made it possible to do that in C, so I don't see it being too hard to move that into circuitpython
Electronic ruler projects really measure up!
Mark Olsson's Tindie store - https://www.tindie.com/stores/narwo/
Thanks @clever summit
Nice work everyone. Thanks for sharing.
Nice work everyone
@drifting arch i really like the badger, sharp artwork
Good stream! Thanks all!
Not necessarily a poster, but one of my favorite wall decorations ๐ช
great projects everyone!
Thanks for sharing all your wonderful projects and amazing talent!
Thanks everyone!
I'm blown away every week with everything people make ๐
WE ARE LIVE! ASK AN ENGINEER! https://youtu.be/hFgVxN0H-yc
Visit the Adafruit shop online - http://www.adafruit.com
LIVE CHAT IS HERE! http://adafru.it/discord
Adafruit on Instagram: https://www.instagram.com/adafruit
Subscribe to Adafruit on YouTube: http://adafru.it/subscribe
New tutoria...
Be the change you want to see in the world.
Adafruit Industries, Unique & fun DIY electronics and kits : - Tools Gift Certificates Arduino Cables Sensors LEDs Books Breakout Boards Power EL Wire/Tape/Panel Components & Parts LCDs & Displays Wearables Prototyping Raspberry Pi Wireless Young Engineers 3D printing NeoPixe...
Adafruit Industries, Unique & fun DIY electronics and kits : - Tools Gift Certificates Arduino Cables Sensors LEDs Books Breakout Boards Power EL Wire/Tape/Panel Components & Parts LCDs & Displays Wearables Prototyping Raspberry Pi Wireless Young Engineers 3D printing NeoPixe...
WE ARE LIVE! ASK AN ENGINEER! https://youtu.be/hFgVxN0H-yc
Visit the Adafruit shop online - http://www.adafruit.com
LIVE CHAT IS HERE! http://adafru.it/discord
Adafruit on Instagram: https://www.instagram.com/adafruit
Subscribe to Adafruit on YouTube: http://adafru.it/subscribe
New tutoria...
i don't know what i dig more, the project or the beat
Thanks for share ๐
That beat tho... ๐
would rather watch Adafruit vids than pewds
pewds is how i know i'm old
โฑ๏ธ ๐ช While @haughty quiver nodded, nearly napping, suddenly there came a tapping,
As of some one gently rapping, rapping at his workshop door.
"'Tis some Maker," he muttered, "tapping for 2min 32sec at his workshop door" --
watch this MakeCode Minute, nevermore.๐ช โฑ๏ธ
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
HARTING's T1 industrial single-pair Ethernet connector brings communication, voltage, and amperage to the device by utilizing PoDL technology.
canbus is much slower than 1Gb/s
worse than breaking the tab on your cable is breaking your ethernet card
PCMCIA: People Can't Memorize Computer Industry Acronyms
the daisy chaining aspect is the most interesting part imo, that can simplify so much stuff
Neat, I wonder what volts and amps it can output.
I can see individual atoms. ๐
By popular demand, we now haveย latching rugged metal push buttonsย with a full colorย RGB LED ringย light! These chrome-plated metal buttons are rugged, but ...
By popular demand, we now have latching rugged metal push buttons with a full color RGB LED ring light! These chrome-plated metal buttons are rugged, but certainlyย not lacking in flair. ...
are there resistors built-in for that rgb button?
https://cdn-shop.adafruit.com/product-files/4659/C13114++C15110.pdf @glad mortar judging from the datasheet, I think so
https://www.adafruit.com/product/4700
https://www.adafruit.com/product/4699
Make inflatables or air-powered projects with this simple air pump. It's great for beginner projects and super easy to use! The pump is basically a DC motor that is powered with ~4.5V ...
Make inflatables or air-powered projects with this simple air pump. It's great for beginner projects and super easy to use! The pump is basically a DC motor that is powered with ~4.5V ...
This soft and flexible silicone tubing is designed to go with our simple air pumps. Great for making air-powered projects with our set of air pumps and vacuums as well as air valves. Need to ...
https://cdn-shop.adafruit.com/product-files/4659/C13114++C15110.pdf @glad mortar judging from the datasheet, I think so
@robust horizon nice!
A Feather board without ambition is a Feather board without FeatherWings! This is theย FeatherWing 128x64 OLED: it adds a gorgeous 128x64 monochrome OLED plus 3 user buttons ...
My Dad and I have discussed making a miniature dark ride diorama
pneumatics might be a cool way of doing small movements
I have a cousin who has done a lot of full-scale animatronics work with pneumatics. expensive stuff
at least it was
Electronics are beautiful ๐
Question: with it being easy to chain I2C devices with grove / Qwiic .. is a โI2C strength Testโ needed after a few connections ? In other words could the single become weak after a few ?
woot for the mention ๐
the big guys do it too: disney's flight of passage ride seats use pneumatics for the "breathing".
With the photo I can appreciate it better than on the livestream @drifting arch
The bottom of the BGA 555 timer....now that is electronic art!!
Very nice newsletter @clear matrix and @spring heath!
Thanks for another awesome evening of shows @open girder!
Thanks @open girder and good night. ๐
Excellent newsletter and excellent shows. Another super excellent Wednesday โก๏ธ
good show!
also re CAN bus things, the PIC32MX series has got can bus support. (they even have a few eval boards with it broken out and built in ICSPs) https://www.microchip.com/DevelopmentTools/ProductDetails/DM320100
you know, if MIPS is the sorta cliff you want to hurl yourself off of ๐
Dual 3-input NOR gate. The Apollo guidance computer was built out of a whole bunch of these.
Super cool
@low fractal Wow, the moon in the led matrix look amazing. I can't believe that I could identify the mare of serenitatis and tranquilitatis, but even nectaris which is a smaller one. Very cool ๐
Thank you @waxen thistle!
Good afternoon all you wonderful people! 
@haughty quiver Hello from SE Pennsylvania
Hi there @sterile forge
bleeps and bloops on twitch!
oh good!
ads and bleeps and bloops on YT!
Youtube alive
Voice sound levels peaking at -6db. Perfect!
Well that explains why this is called John Park's Workshop!
John's gonna eventually cover his entire shop in LED panels
hello, i thought i wasn't allowed to talk yet because i just saw the link in the YouTube description and joined this discord, but it looks like the client is letting me! so hi
Find maker jobs in 3D and CAD, Art, Design, Education, Embedded Development, Engineering, Fabrication, Marketing and Communications, and Web Development
Good afternoon (though stuck having to mute things for the moment)
Congrats on the new show, @haughty quiver !
"Top Ten 10k Resistors, This Week On John Park's Product Pick Of The Week!"
Top 10 Hidden Appearances of Adafruit Products in TV & Film.
Number 7 will SHOCK you!
I actually found a random Adafruit product in an escape room as a decoration. Asked later it was a board the designer accidently burnt out
Still live!
I'm continuously astounded how deep these MakeCode games are
Beeping. Socks are dry.
Or there's a flood and they're wet.
BRB
Or they've been stolen and that's the anti-sock theft alarm.
We've had one or two run away before.
That's smart, marking those. I just have been double checking, but good to write it.
The spritesheet to house all the icons is an old css trick to reduce number of files.
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
I was doing all this network reading and JSON parsing on Arduino in C... CircuitPython is so much easier
I'm here
can't see your screen
Thank you!
thank you all!
@haughty quiver The stream is still live -- bleeps and bloops serenading us ๐
bloops forever!
Hello all, may I ask what time @rapid hornet 's Deep Dive stream starts?
?showtimes
JP's Product Pick of the Week - 4pm ET Tuesdays
3D Hangouts - 11am ET Wednesdays
Show & Tell - 7pm ET Wednesdays
Ask an Engineer - 8pm ET Wednesdays
Desk of Ladyada - Random hacker times
John Park's Workshop - 4pm ET Thursdays
Deep Dive w/Scott - 5pm ET Fridays
amazing thanks
;)
Mmmm 5am Singapore time, I will set an alarm then lol
getting started now
ITS CAT cam!!!
now i will leave
well i finally got my vmware workstation working, 15.5 seems to co-exist with hyperv
hey
You need a wireless cam....on her...then we get a real CatCam
cats are not liking harnesses
i remember attaching a halloween costume to our Siamese. He was not amused
Jonny B says hi...he's just gone out to a Bar ๐
bar sounds nice. i havent been to a bar since ....
Depends on the cat. Our Siamese decided the harness was no big deal.
Hej Spoket ๐ป
hmm, ours was a special cat. hated everyone equally
he refused to eat as a kitten.
We have a kids cartoon character in Sweden called "Laban lilla spรถket"
he would look at the food and back at my mother, and walk away. Turns out he liked to eat mice.
translated?
i could have a beer.
Good to see everyone, hope y'all are doing well
scary
That's good advice, focus on yourself!
nice buttons
Indeed, the focus is a bit soft
It's good enuf
Fuzzy camera and fuzzy logic are fine ๐
Your eyes look like Don Jr's ๐
That's as political as I'll go...don't worry ๐
People pay good money for these soft instagram filters ๐
i looked great when my webcam was 640x480
I'm not looking at you anyway, spook is in focus
true. we are being somewhat troll like, or ogre.
Ah...
Hi Other Cat
Get a PTZ cam for CatCam...and let me control it so you can focus on the stream.
well thats not super pricey.
Code code code....
also available through digikey ,
Never ever write "hopefully final.....", it'll change for sure ๐
lol
I saw something where espressif will be removing many components from the esp-idf. and have a 'Component Manager' to select what you needd
Which might reduce the size?
'We can fix it' a quote to remember
I am literally right now making a new board that the soicbite connector will be PERFECT for.
that is very neat
i'm amazed how much i get out of these dives.
i'm very interested in the CAN work being done in CP
8 pins please ๐
JLCPCB standard is 1.6mm
M2 is 0.8mm
If I can replace those 6 pins with an edge connector...it'd be awesome
You should really use TX/RX on it also...that's better than SWO
oshconnect is some sort of insurance company , unfortunate name
Check out stdc14
not super crazy about that 5 cycles thing.
STDC, is a standard from STMicro...having RX/TX on it is sooo great when debugging...and one connector is better than multiple.
Yes, I agree with switchable trace/uart
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
You really need to Unit Test @rapid hornet
so anyone can do a pull request for a new board even if not the mfgr?
rerun!!
no posting funny GIFs
"It's very very easy" another great quote
Banana for scale is the new standard
I'm missing the show :(.... (meetings ๐ฆ )
I know how you feel -- fridays at 5pm is the rush before the weekend.
and scott did say this was 'very very easy'
following along in: https://learn.adafruit.com/how-to-add-a-new-board-to-circuitpython/overview
I heard a vacuum/hoover ๐
panel probably
this is an interesting comment on the kaluga schematic 'Put J4 jumper on if wanna control RGB.'
yes, one is debug, the other power
I've tested it, you can view at http://debug-edge.k0d.se
Hello all, just when I get a Saola board to play along at home we move to Kaluga ๐
@wispy linden Hope you have a BADGEr and FemFemFemto to play with soon! They're on their way.
@rapid hornet I think FTDI works on linux "out of the box"
i guess i should connect my kaluga and 'play along'
i know, sparkfun , but maybe they know something
FTDI drivers are nice
lol, after the famous 'destroy clone' thing
Whatโs funny is 98% of the clones werenโt even good clones lol
Someone who xrays chips from AliExpress for fun did a write up or video on how terrible most clones are
@rapid hornet https://aur.archlinux.org/packages/libftd2xx/
Library that allows a direct access to a USB FTDI2XX chip based device
But you need to get it to find the device first ๐
jeez thats a feature overloaded board
But arch linux is a bit different
running popos
You never need 5v connected if you're powering it another way.
I don't even think I have a USB Hub
Unless you count the built in ones in the Mac...
well everything has build in hubs. i guess
i'm actually liking this linux vm.
IT'S THE HUB ๐
D+ and D- connected right?
I am going to try and mod my Kaluga and expose the OTG Usb on the power USB connector.
There are test points for d+/d- and nearby NC resistor connected to tehe ESP32 OTG lines
Needs some small mod wire..
It isn't currently wired
I have a Cucumber ESP32-S2 board, it has both USB-C's on the board
you would have to mod it yourself
i hAVE the cucumber also. works fine.
i did flash mine. exept i dont have hte breakout
oh wait, they are pull-down
so i will leave the usb connection as a exercise for others
pullups are part of the chip, not something you want fixed
its up or down depending on if you are host or device
as an aside here are links for jtag
Have you got the right pins?
@rapid hornet Green is 100% GPIO20
If your cable is adafruit's one, and their docs are right...then it is
See this pic Scott?
DP = 20
ESP S" GPIO20 = d+, GPIO19 = D- according to datasheet
Did you remove your hub now?
Lol hub..
How many โ do you owe me now Scott? ๐
I generally recommend USB2.0 hubs. In my experience from doing long term exhibits they are a lot less finicky. USB3.0 still got lots of bugs in Linux too.
Scott, did you see my PR above? ๐ https://github.com/debug-edge/debug-edge.github.io/pull/1
I've tested it, you can view at http://debug-edge.k0d.se
lol
@rapid hornet I DARE you to build your own hubs https://www.retrocution.com/2020/01/15/easy-diy-tiny-usb-hub-for-raspberry-pi-projects/
@glad mortar I'm REALLY interested in your tablet btw....it looks amazing!
thanks :)
@rapid hornet I can't believe you had that...
i'm searching for my usb breakout. its n a box. what box.
@simple fractal I have so many USB cables...I just chopped one.
sigh, true
So Kaluga will be in 6.0.0-alpha4 since alpha3 is just out...
I'm hungry...time for a 01:00 snack...
i realized in had an old sublime text license. so upgraded it to V3.
hm, skorpor is rye
?
Nope, it's like roasted baguettes...
With a nice homemade roasted garlic butter?
i'm trying not to have bread. so hard
our local baker is only open friday->sunday
and i had to walk by today.
let me go find photos
This is the kind of skorpor I like...it's crispy bread
I'm a huge fan of Trader Joe's garlic naan -- toast it, little butter, slice of cheese and ham. What a delicious sandwich.
@rapid hornet so I've followed these steps for the Gravitech Cucumber R ESP32-S2 board .. however Gravitech don't seem to have a USB VID of their own.
@wispy linden lol, i was going to do that. thanks for beating me to it.
i think that you should open an issue asking for a pid/vid
So raise a PR then amend the ?VID?
i thought you were meditating
Nice ๐ raising a PR for this too
Wow...now I see you need a shave Scott!
boom ๐ PR raised
Contemplative Tannewt
Thanks for another Deep Dive @rapid hornet!
Thanks @rapid hornet , I will have to go back as missed first half..
thanks all!
Thanks Scott.
Thanks
thanks, great dive
I think we should all start a petition to ensure that meditative Scott screenshot to be used in the next python on hardware weekly video ๐
- usb vid is not recurring cost, just once
looking at artifacts from https://github.com/adafruit/circuitpython/pull/3346/checks?check_run_id=1044023564 ( Add Kaluga board ) - expected to see espressif_kaluga in the list - isn't this what you were saying today @rapid hornet
is there perhaps some CI configuration edit undone ?
I do see "build-xtesna (expressif_kaluga_1) in the left column under Build CI - oh - maybe no mystery - just the build caught an error?
Check failure on line 1 in .github
@github-actions
github-actions
/ build-xtensa (espressif_kaluga_1)
.github#L1
Process completed with exit code 2.
--- was it just bad luck that this failed?
fatal: repository '/home/runner/work/circuitpython/circuitpython/ports/espressif/asio.git' does not exist
Now that I see that the run was kicked off by LadyAda - I guess it was just bad luck that the Kaluga build failed, right?
I don't see this error on the wrover build
https://github.com/adafruit/circuitpython/pull/3346/checks?check_run_id=1044023574
https://github.com/adafruit/circuitpython/pull/3346/checks?check_run_id=1044023564
that cucumber board looks nice!
@haughty quiver For your product of the week, would you consider putting it (bmp280) in a balloon and inflating that balloon. My experiment show that the humidity sensor goes high, and pressure raise. But most of the fun is that it detect any light pressure on the balloon. So it become an interesting contact sensor, I can think of a theremine, or sending midi message. The trick would be to find a min and max value to determine the sensitivity.
That's an interesting idea. I'm guessing you would get difference responses from elastic (such as rubber) and inelastic (such as mylar) balloons too.
@wind spoke thanks thatโs a great suggestion. I have a somewhat similar demo planned, but now Iโm going to see if I can also get a balloon to work. Stay tuned!
@haughty quiver Benefice of the Ballon is that you can modify the pressure at ease (not easy to blow it with the I2C cable or USB cable passing, but douable). But if you find other ways to change the pressure, don't hesitate... moving it up and down does not change much the pressure. My Feather (nRF52840) Sense Express is in a balloon and the RGB LED glow (in the dark) the white balloon.
That's an interesting idea. I'm guessing you would get difference responses from elastic (such as rubber) and inelastic (such as mylar) balloons too.
@prime sentinel I went for rubber, that work well.
DESK OF LADYADA - STEMMA, Great search and more! https://youtu.be/yTbttLU3Yrg
This week we were purchasing some parts on Digi-Key and discovered that the part we needed was not in stock! Luckily, there are lots of alternatives. This week we'll go over some of the techniques we use to find alternative parts so manufacturing is not halted!
Love it, would love to see more castellated pad boards
Currently designing a board planning to give an optional xiao footprint, so this is good timing :)
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
Just saw the stemma legos. Will they have electrical connections through LEGO?
?showtimes
JP's Product Pick of the Week - 4pm ET Tuesdays
3D Hangouts - 11am ET Wednesdays
Show & Tell - 7pm ET Wednesdays
Ask an Engineer - 8pm ET Wednesdays
Desk of Ladyada - Random hacker times
John Park's Workshop - 4pm ET Thursdays
Deep Dive w/Scott - 5pm ET Fridays
@light stump no, the LEGO connections are mechanical only, the electrical connections are through the cables or soldered pin headers.
@light stump no, the LEGO connections are mechanical only, the electrical connections are through the cables or soldered pin headers.
@haughty quiver would be cooler if they had electrical through the LEGO connectors
Just imagine some neopixels embedded in legos and stacking them up
@lilac tusk for sure! I did some projects with the first gen LEGO mindstorm electric bricks a few years back https://makezine.com/2009/11/11/flashback-lego-recharger/
?showtimes
JP's Product Pick of the Week - 4pm ET Tuesdays
3D Hangouts - 11am ET Wednesdays
Show & Tell - 7pm ET Wednesdays
Ask an Engineer - 8pm ET Wednesdays
Desk of Ladyada - Random hacker times
John Park's Workshop - 4pm ET Thursdays
Deep Dive w/Scott - 5pm ET Fridays
Hello!
hello all
hello
Drum machine!
no audio
no audio
@haughty quiver audio is not working
Audio stopped working after Lady Ada vids.
@haughty quiver Glitch alert doesn't seem to be working.
No sound on your live stream!
He's going to have to repeat the whole show. ๐
Lars is leaning on the cough button.
no audio whats so ever the whole show after the lady ada vidoe
Can hear you now
It's on.
Behind the scenes view
Audio is back on YT now.
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
@haughty quiver what do you use the calibrate the altimeter calculation, since it's dependent on your local barometric pressure?
In the middle of a work call, but I wish y'all a very awesome first broadcast of the new show!
Squoze ๐
How about using a ziploc bag?
Great show, thanks @severe zodiac
Good idea @sterile forge
Great show
Thanks so much for participating in the first wacky episode!
Super show even with the coffee break segment!
Well you'll be more carefull with the videos
BTW thanks for redoing the second segment
@viral sail I believe you essentially calibrate it by entering the current ground level pressure reading from a aviation service or other online resource.
This site has some good details https://www.best-microcontroller-projects.com/bmp280.html
Here's the livestream video minus the dead audio section :] https://youtu.be/tiSPHhKIeEA
JP's Product Pick of the Week this week is the STEMMA QT BMP280 pressure sensor breakout board!
https://www.adafruit.com/product/2651
Visit the Adafruit shop online - http://www.adafruit.com
LIVE CHAT IS HERE! http://adafru.it/disco...
#3DPrinting Live in 5 mins! https://www.youtube.com/adafruit/live #3DHangouts
good morning folks!
Adafruit is open, safely ... and shipping orders at this time within 1 to 2 business days https://www.adafruit.com/opensafely
Adafruit Industries, Unique & fun DIY electronics and kits : - Tools Gift Certificates Arduino Cables Sensors LEDs Books Breakout Boards Power EL Wire/Tape/Panel Components & Parts LCDs & Displays Wearables Prototyping Raspberry Pi Wireless Young Engineers 3D printing NeoPixe...
Hello everyone!
@Pedro
Good morning
Its night here in India btw
Subscribe to Adafruit Newsletters https://www.adafruitdaily.com/
Good morning all you wonderful folks ๐
She mentioned something about it on Sunday so you're probably okay
good morning to you too.
Good morning , afternoon , evening to everyone . :)
thanks
so snappy
That's a great idea using the vinyl
YouTube Project Video -
https://youtu.be/JvqsdFKqftU
Build your own busybox interruption sign using NeoPixels and CircuitPython! 3D print a snap fit case with swappable faceplates. Use black LED acrylic and vinyl decals to create your own signs!
Visit the Adafruit shop online - http://www.adafruit.com
-------------------------...
one thing could be engraving too if dont want to use vinyl cutter
Feather nRF52840 Express -
https://www.adafruit.com/product/4062
or maybe make LED strip holder support where you just slide the LED strip to case
10-wire Ribbon Cable -
https://www.adafruit.com/product/3890
NeoPixel LED Strip -
https://www.adafruit.com/product/1376?length=1
3D Parts Library on GitHub
https://github.com/adafruit/Adafruit_CAD_Parts
Really similar to how I'm lighting 3d printed lithophanes. Really nice case design
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
one stemma to rule all stemmas
that need some electronics perhaps to light some textures on it
Thanks for another fun show!
Great show
thanks for hanging out folks! ๐
the curve knife with some small led could make it more cooler
Thanks @rocky reef & @hard hollow . See you tonight.
thanks for hanging out folks!
Thanks guys great show, had to run for work so will re-watch the end!
I miss being able to watch @hard hollow and @rocky reef . Work keeps getting in the way. I'll catch it later on the tubes.
I usually end up missing the live stream due to work as well.
But at least it's up on YouTube after
@hard hollow and @rocky reef Awesome show/idea. People might not have access to a vinyl cutter. They could also probably do the same effect with their 3d printer and black filament. Anyone want to make the designs as a couple mills thick stls?
Some of the black filament I've seen isn't very densely colored, a thin layer of it is fairly transparent.
perhaps hitting it after with some black primer paint?
or maybe adding black gesso on the inside might help
black electrical tape.. or gafe tape!
There are 3d printed vinyl cutters (though they need mechanical & electrical parts) ๐
I haven't built any so I don't know if they happen to work "almost", "just barely", or "pretty well actually"
Theres something about the optics in the black led acrylic that makes the light diffusion really nice and even. Filaments with dark pigments tend to not diffuse well. With enough sanding, could make some nice panels with transparent/opaque PLA. Can also use different infill patterns to create interesting 'texture'.
@hard hollow I was just thinking of using something else for the vinyl. Still want the black acrylic.
@paper schooner oh for sure! ill make STLs of the decals so folks can print them too, good idea ๐
looks like thingiverse is down so I threw them up on prusa ๐ https://www.prusaprinters.org/prints/39859-diy-on-air-sign
good evening folks
Good evening (or night and morning for some)
Heyo
Hi everyone.
Good evening all you wonderful folks.
Good middle of the night ๐
Good afternoon!
Here we go again
Link to join to show and share your project: https://streamyard.com/fay2a9b3vx
WE ARE LIVE! SHOW AND TELL! https://youtu.be/kYn3L1m6IBc
hello all
hi all!
So big!
Or what a small Digikey employee next to a normal sized clue.
Well, whatever the case, he definitely has a Clue.
the snakiest day
It multiplies
I take the full blame for Scott adding unit tests,
๐ how'd the camera look?
Very sharp and smooth
k, awesome. I got fed up with the focus on the other one
The opening whistling song from the animated movie was sped up, and became the Hamster Dance song.
"Unlike others, I can do a English Accent" - Robin Hood - Men in Tights
its Park, John Park
i enjoy the beastie boys quote and credits @haughty quiver
I'm confused...the National Geographic cover, was there an adafruit board on it...or??
LOL that was it @drifting arch LOL
It was my fave song for a lot of years, got it on vinyl! I saw Bryan Adams perform it live in Stockholm in 2012 I think it was...
Now I can't get it outta my head
@drifting arch same, somewhere I have the piano music for it (and the rest of the soundtrack)
Don't scare the cat Collin!
Ha! ๐ฆ
We need BitLuni to get party parrot on his mega matrix
awesome @split gazelle !
Price of Bitcoin ๐ฆ
2020 is going sideways
@rapid hornet If only it was, that'd be an improvement ๐
thanks @rapid hornet !
Thanks everyone, hope I have my next idea done soon to show off again
price of CircuitPython Coin
Such great tones.
Great work everyone. Thanks for sharing.
Impressive!!
Indeed, awesome! Thanks to everyone who shared!
Loved having an hour of show-n-tell, but understand that folks are all caught up now and have to make new stuff to show off.
I think I'll have something to show in 2 weeks...
Show what you want, when you can ๐
Iโll have a few things next week ๐ฌ
me too..... I took too long troubleshooting my demo because it has been a few weeks! lol..... ARG!
ooo, new jammin' beats!
WE ARE LIVE! ASK AN ENGINEER! https://youtu.be/iHxoFuktl08
Visit the Adafruit shop online - http://www.adafruit.com
LIVE CHAT IS HERE! http://adafru.it/discord
Adafruit on Instagram: https://www.instagram.com/adafruit
Subscribe to Adafruit on YouTube: http://adafru.it/subscribe
New tutoria...
Adafruit Industries, Unique & fun DIY electronics and kits : Free - Tools Gift Certificates Arduino Cables Sensors LEDs Books Breakout Boards Power EL Wire/Tape/Panel Components & Parts LCDs & Displays Wearables Prototyping Raspberry Pi Wireless Young Engineers 3D printing Neo...
does it check from the Stemma QT's that we already ordered?
Would the plural of Stemma be Stemmae?
Just catching up on S&T VOD, but it brought back memories of having to sing that Robin Hood song in middle school chorus class. 
@fair fulcrum it does not, it's only set we have that is part of the free offer starting now
interesting =^-^= i was going to be making another Stemma QT order today anyhow! cant wait to see what I gets =^-^= thanks!
Iโd like to ask where would I be able to order these thin sheets with conductive traces.
If Kevin W from <@&453561466486915072> figures out the first green pixel issue in the giant Clue, I'm dealing with the same issue on neopixel project.
when you cant re assign the I2C address! thats when LOL
unless you get a multiplexer, then you need like 5?
"squoze"
black hole lol
@fair fulcrum https://www.adafruit.com/product/4704
yea, i just got one of those in the mail literally yesterday. =^-^=
โฑ๏ธ โ๏ธ .............. โ๏ธ โฑ๏ธ
[ @haughty quiver's MakeCode Minute was muted for 2min 12sec ]
โ๐ฟ
if ya wanna try the app the QR code works via the video too
Just wondering - are you guys planning on making a board with the GUVC-S10GD similar to https://adafruit.com/product/1918 ?
yup the qr code link works here @open girder
I hope I'm in the correct place for asking questions...
closed captions ๐ฏ
@mellow ibex yep, we'll get to questions later in the show
OK - thanks.
Confirmed -- the QR code works like a charm ๐
@mellow ibex what's the difference -- the wavelength it's sensitive to?
I found GUVV-S10SD but not GUVA-S10SD
@mellow ibex got it
https://github.com/adafruit/Adafruit-GUVA-Analog-UV-Sensor-Breakout-PCB in case you wanted to order and populate your own PCBs the design files are available
leaderboard? ๐คฃ
Thanks for that Jeff - maybe I'll do that.
Earlier this year - the GUVC-S10GD was selling for a lot more than what's posted on DigiKey right now if memory serves me - I'd asked this question on twitter...
poll workers do usually get paid I think
@rapid hornet they do! for old navy they get paid by old navy and in locations that pay too
(adafruit does too)
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
So for some folks in the right location, you can do your civic duty and get paid...twice. Seems like a pretty sweet deal ๐บ๐ธ
ok, I'm unsealing my voter registration (I just moved and filled it in today) that's going in the mail tomorrow and checking Yes to "Poll Worker Volunteer"!
thank you @median relic !
I've mentioned it before -- that would be a great title to lose, not being the most prolific open source hardware company ๐
this is how we do it, one person at a time, around the USA together
awesome @median relic
last week a person here also signed up
as a poll worker you can usually vote absentee too
๐
Even if you cannot vote, you can do so much to be involved in the civic process -- regardless of your country ๐
Yup was pondering that today, and needed the push...thank you! Will spread the word as well on poll volunteering! We're in it together!
soldering videos are like ASMR for me. so calming
oh! i use a fuse similar to that has one screw end to hold all my generic drill bits.
@hard hollow @rocky reef do you guys ever use Simplify 3D?
I saw infill the second time the hilt/crossbar went by
illuminati confirmed
How much feature overlap is there between the Analog Discovery and the Digital Discovery?
https://www.digikey.com/products/en/test-and-measurement/equipment-specialty/618?k=digital discovery
Test and Measurement โ Equipment - Specialty are in stock at DigiKey. Order Now! Test and Measurement ship same day
do protocol analyzers have a max MHz rating like waveform analyzers or is that covered by the sample rate?
PIR sensors are used to detect motion from pets/humanoids from about 5 meters away (possibly works on zombies, not guaranteed). This sensor is much smaller than most PIR modules, which makes ...
This is a great connector for anyone doing RF work, when a right angle RP-SMA connector is required. Solder it into your PCB for a very secure mechanical connection. You've probably seen ...
This is a great connector for anyone doing RF work, when a right angle SMA connector is required. Solder it into your PCB for a very secure mechanical connection. You've probably seen ...
hmmm I guess if I wanted 5V from car voltage this would work a treat
This fully-assembled and ready-to-rock robot smart car is the nicest we've seen and is incredibly easy to use with a micro:bit and MakeCode. It comes all ready to go, no soldering or ...
yea, I think it is crazy how flexable some of the RC world boost buck converters are. but they are really expensive
Can it be used for Primary Lithium Battery chemistries?
Question for the show: LC709203F: any guess on the power consumption?
I am going through the datasheet but it is not entirely clear.
Any recommendations for a contact sensor (like the touch sensors) but between two objects? Want something as flat as possible
does it have spi flash?
Question: what would I need to design a LoRa concentrator PCB from scratch?
YES small boards with a stemma connector, that will be in my collection when it comes out.
How much feature overlap is there between the Analog Discovery and the Digital Discovery, if one was going to get both?
thanks!
Question: what would I need to design a LoRa concentrator PCB from scratch?
@frail oracle Like what ICs would be necessary, etc.
Do you sell HackSpace yearly subscriptions? Looks like about $120 per year, but includes Circuit Playground Express, through their website.
is that why there is a lot of 1 cell lipos that have 4 wires coming out ? those batteries have one of these fuel cell chips on it?
Thanks ๐
Any recommendations for getting started in RF engineering and RF design?
The LiPoly / LiIon Fuel Gauge says to use with a โsingle-cell batteryโ. Can we use a balanced lithium ion pack like the 3-cell 6600mAh or 2-cell 4400mAh Lithium Ion packs?
can you put a footprint for SPI flash on the bottom side?
you guys have everything going for you. You guys are using all of the things that people consider weaknesses as strengths. โค๏ธ
Any tips for Soldering pads with really tight spacing ? Less than 2mm spacing
Adafruit definitely has inspired me to take the jump on starting to sell small designs
Itโs also helping me get better at things I wasnโt so comfortable on too
Photography I'll take 500 pictures to get 1 I like, so yeah
now i need to go have some cake... thanks ladyada....
Thanks for another awesome set of shows tonight!
See everyone next week for circuitpython day!
Woo!
Thanks for a great set of shows!
Great shows, thanks to all
Also wrote my first circuit python example for a load switch breakout I made. I need to get a CP board to try it out on haha
So feeling pretty pumped ๐
@lilac tusk awesome! did you use a simulator while writing it?
No, I actually based it off a few examples on the learning section. It wasnโt a difficult or complicated example
I plan on double checking it soon though because I wrote it in a hurry
awesome, =^-^= i wouldent feel confident in my code until I saved and ran it after EVERY new line of code lol.... I am not a good coder.
It takes time to get better, and in time you will ๐
the simulator extention in VScode is pretty useful
yea =^-^= thanks. I keep trying lol
@clear matrix and @spring heath -- thanks for another excellent weekly Python newsletter! 
So much going on in CircuitPython world! Thanks to @spring heath for the comprehensive weekly compilation and @clear matrix for the exceptional narrative.
Thanks @open girder and good night. ๐
?showtimes
JP's Product Pick of the Week - 4pm ET Tuesdays
3D Hangouts - 11am ET Wednesdays
Show & Tell - 7pm ET Wednesdays
Ask an Engineer - 8pm ET Wednesdays
Desk of Ladyada - Random hacker times
John Park's Workshop - 4pm ET Thursdays
Deep Dive w/Scott - 5pm ET Fridays
@inner spade @waxen thistle Thank you both! Glad you enjoyed it!
IS THIS THING ON
Yes.
yay!
I have a huge, hard to miss software VU meter running on my second monitor today, let's see if I can keep from running without sound now!
Not on YouTube yet.
it's on the way any moment now!
We're live.
Bleeps and bloops on YT!
I stopped counting bleeps at like twelve of them
42 beeps
hi all!
Sorry. Was only listening for bloops today.
hey folks
Hi all!
Good afternoon all you wonderful folks! 
Find maker jobs in 3D and CAD, Art, Design, Education, Embedded Development, Engineering, Fabrication, Marketing and Communications, and Web Development
Hello everyone ๐
I'm fashionably late ๐
Adafruit Industries, Unique & fun DIY electronics and kits : Free - Tools Gift Certificates Arduino Cables Sensors LEDs Books Breakout Boards Power EL Wire/Tape/Panel Components & Parts LCDs & Displays Wearables Prototyping Raspberry Pi Wireless Young Engineers 3D printing Neo...
Reminder, I'll be streaming a deep dive after JP is done or 2pm pacific
Bit late for me but look forward to catching up with it tomorrow!
running smoothly
ooo right-angle screwdriver. but jeez JP, why don't you just machine your own like Clickspring? ๐ ๐ https://www.youtube.com/watch?v=2i1oR3qgYck
Making A Right Angled Screwdriver, by Clickspring
A right angled screwdriver isn't a tool you'll need to use often, but its great to have one on hand for things like inserting a mainspring hook into a clock barrel wall.
The main project video that this video is related to is...
Here's something that's super low-profile: https://www.amazon.com/Anex-6102T-Profile-Driver-Handle/dp/B0016VAIBI/
totally picked up a pack of those
wow that black LED acrylic makes those displays look so nice
๐
Adafruit was out the last time I checked but, Tap plastic has it in stock and will cut pieces for you.
It's the MVP of the LED world -- just like how 800-1200 grit sandpaper is the MVP of the plastic sanding world. ๐
And how hockey stick tape is the MVP for putting a grippy surface on something.
And how compressed air is the MVP to instant-cool hot glue ๐
"Everything is impossible until somebody does it." ~Batman
"Any sufficiently advanced technology is indistinguishable from magic." - Clarke
"I'm Batman" -- Batman ๐
Just don't feed it after midnight.
Which Adafrut IO protocol are you using? HTTP or MQTT?
adafruit is live at https://www.twitch.tv/adafruit
Adafruit was founded in 2005 by MIT engineer, Limor "Ladyada" Fried. Her goal was to create the best place online for learning electronics and making the best designed products for makers of all ages and skill levels.
@nova totem using HTTP
Thanks, I need to try this on CP, did it in Arduino by hand... less fun
@haughty quiver Thanks for another awesome show!
Yeah, I've done it in both. It took much less time to set up in CP.
Thanks @haughty quiver
Is there a library for Arduino or just using HTTP/Json parsing? I may be sad if there was a library I missed
Good show @haughty quiver
gr8 show JP
For Arduino, I just used the AdafruitIO library
Thanks JP
Thanks @haughty quiver !
Thank you all!
Nice work on the display features and functionality @sage aspen
Thanks @inner spade
Yes, its really smooth @sage aspen
just getting my discord running
Wow. As long as it's in front of your eyes, right?
I have twitch up but not chatting on it
Yes, twitch chat hmm,
Woah. We need a purchase link for that camera!
Good afternoon again all you wonderful folks!
@proper trench needs one of those cameras now too. Very fast autofocus.
Which camera is this again? [just joined]
Sony ZV-1
Thanks ๐
most streamers need fast autofocus.
it seems a bit over my budget for zoom meetings ๐
I remember watching a few videos on the ZV1 -- bloggers really love it ๐
does look really good