#live-broadcast-chat

1 messages ยท Page 162 of 1

haughty quiver
#

ah, thanks @sterile forge I didn't know that about glyph ascii values.

sterile forge
#

@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.

timid plover
#

@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?

GitHub

CircuitPython - a Python implementation for teaching coding with microcontrollers - adafruit/circuitpython

rapid hornet
#

@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

timid plover
#

I forget to look at the other branches ๐Ÿ™‚

rapid hornet
#

native_wifi is my active branch for the esp32s2 stuff

timid plover
#

( I was out of town last week - and I wanted to "catch up" in anticipation of another deep dive on Friday )

rapid hornet
#

yup, that's how far behind circuitpython is

#

merging mp in is tough

timid plover
#

@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

rapid hornet
#

@timid plover it's 6. make sure you pull tags down

timid plover
#

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

GitHub

This version of actions/checkout will

Fetch all history for all tags and branches when fetch-depth=0

We leave the tags fetch in place so that actions in cloned repos work. Cloned repos' ...

rapid hornet
#

maybe you need them from the circuitpython repo?

#

maybe I haven't pushed them to my fork

timid plover
#

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

timid plover
#

@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')

rapid hornet
#

@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

timid plover
#

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.h

and circuitpython/shared-bindings/socketpool:
Socket.c Socket.h SocketPool.c SocketPool.h init.c init.h

I 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 )

strong acorn
#

?showtimes

arctic abyssBOT
#

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

timid plover
#

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 )

waxen thistle
#

Live on Twtich!

viral sail
#

Hi @rapid hornet

timid plover
#

did you get your "checklist" done

#

latency, fonts ๐Ÿ™‚

waxen thistle
#

I remember you mentioning the GameBoy FPGA clone -- have you looked into their SNES FPGA clone?

wind spoke
#

Cat OK

waxen thistle
wind spoke
#

MiSTer ...

waxen thistle
simple fractal
#

Yay

#

If you arrived here and Scott hasnt he was here yesterday. Engage time travel mode

waxen thistle
simple fractal
#

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.

viral sail
#

Week has been good. Finally got back to the observatory last night, first time since January.

timid plover
#

great idea! ( auto cat cam )

muted dragon
#

(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. ๐Ÿ˜„

simple fractal
#

this is the best chat.

muted dragon
#

0xBAD0DEADBEEF

timid plover
#

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

simple fractal
#

there was a ti dsp that would spit back BAD in the i2c when it had issues

muted dragon
#

AWW :3

timid plover
#

maybe you also need motion detect - for cat cam interrupts ๐Ÿ™‚

muted dragon
#

Cats are electronics no?

#

hehe ๐Ÿ™‚

digital crescent
#

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).

solid wyvernBOT
digital crescent
#

then why would your output have a 3f8 address?

timid plover
nova totem
#

I'll allocate a 2 MB block cause I can and complain I have no memory of course

timid plover
#

would some of it be useful as a "ram disk" file system

nova totem
#

May be good to store data if you don't have a cell/radio/etc type connection and mass upload later on

vital orchid
#

I've never seen someone sit in a chair like that.

timid plover
#

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?

vital orchid
#

LOL you'd have to keep moving just to be able to afford that. Like, staying at work.

simple fractal
#

yes, i casued a neck issue using the wrong chair for a few years.

#

and a chair lasts almost forever.

#

lol

nova totem
#

I'm not a huge fan of working from home but my chair here is so much better then at work

simple fractal
#

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.

tropic inlet
#

RU using ps_malloc() rather than malloc()

timid plover
#

that would mess up my VI keystrokes HJKL ๐Ÿ™‚

smoky island
#

What kind of keyboard is that?

waxen thistle
#

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.

timid plover
gusty wedge
#

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...

modest vector
#

I feel like I would be locked out of all my accounts since I rely on muscle memory for all my passwords.

gusty wedge
#

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...)

vital orchid
#

that's a genius idea, but it's alarming that it doesn't limit the number of password attempts.

gusty wedge
#

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.

timid plover
simple fractal
#

in staring at the Micropython port to esp32 it seems that the address is correct. mp_task_heap = (uint8_t *)0x3f800000;

wispy linden
#

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.

gusty wedge
#

I wish there was a esp32-s2 ttgo watch...

digital crescent
#

where do we get the new adafruit_requests module from or how do we build it?

wispy linden
#

Amazing, thanks for the progress update!

digital crescent
#

thanks

wind spoke
#

Any news from Limor about the pin selection so that RGBmatrix will work well and possibly one of the FeatherWing can be reused.

timid plover
#

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!

gusty wedge
#

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.

timid plover
#

you might learn something as you add the feather s2 support

shell mason
#

have you seen Thermaltake Cyberchair E500

timid plover
#

but you could push it and then rebase what you learn

#

+1 for separate branch

shell mason
#
gusty wedge
#

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

simple fractal
wispy linden
#

@gusty wedge it may be easier to get a USB PD decoy module to get you the 9V

gusty wedge
#

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?

wind spoke
#

๐Ÿฅ‚ 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.

timid plover
#

git checkout . ( what does that mean ? )

#

note the "."

#

clean up - thanks!

gusty wedge
#

@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...

wind spoke
#

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.

brazen grove
#

@gusty wedge that took a while

gusty wedge
#

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.

timid plover
#

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

waxen thistle
#

loud and clear

vital orchid
#

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.

timid plover
#

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 ?

simple fractal
#

do you have the code? i could try it.

#

of course i might have to reflash my saola.

timid plover
#

see earlier post ( maybe 4 - 6 hours ago ) - let me scroll back ๐Ÿ™‚

simple fractal
#

i was being lazy

simple fractal
#

lets see, probably have to reflash as my saola is about 2 weeks old.

gusty wedge
#

In a future stream it would be also cool to push the pr at the start, and have us test like crazy ๐Ÿ™‚

timid plover
#

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

wind spoke
#

Earlier you asked "anyone want to do a release today?" .. are you talking about 6.0.0-alpha3 ?

waxen thistle
#

๐Ÿ†

timid plover
#

quick - submit an issue - so you can "fix" it and check off ๐Ÿ™‚

gusty wedge
#

Watch show and tell. It's pretty diverse and eclectic, and you cannot get a better bunk of people.

wind spoke
#

advent calendar

waxen thistle
#

Advent of Code

tropic inlet
#

@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

waxen thistle
#

Thanks Scott for another enjoyable stream!

gusty wedge
#

And like the video :รพ

viral sail
#

Thanks Scott. Have a good weekend.

modest vector
#

Thanks Scott. Good stream!

timid plover
#

fantastic - thanks again Scott!

gusty wedge
#

Thanks Scott.

timid plover
#

you too!

rapid hornet
#

thanks all!

gusty wedge
waxen thistle
#

puurfect.

timid plover
#

@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 ) -

timid plover
#

is esp32s2

microcontroller.cpu.frequency
supposec to be 0 ?

open girder
waxen thistle
#

Good evening all you wonderful folks!

spiral bough
#

Speaking of Stemma QT and boards, the (HT16K33) LED backpacks would benefit!

timber spear
#

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?

open girder
#

@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!

https://www.digikey.com/short/zrn3r4

spiral bough
#

try sunled?... I think they are bottom mount for shining thru hole in PCB/substrate.. @timber spear

waxen thistle
#

Thanks for another awesome stream!

#

?showtimes

arctic abyssBOT
#

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

shell mason
#

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

hard hollow
#

โ˜•๏ธ

waxen thistle
#

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!

hard hollow
#

yay, thanks for the check @waxen thistle

rocky reef
waxen thistle
#

My pleasure ๐Ÿ™‚

rocky reef
#

good morning folks!

waxen thistle
#

Youtube not up yet

#

Audio cut out @hard hollow @rocky reef

rocky reef
waxen thistle
#

Audio is back

#

Audio cut out again.... ๐Ÿ˜ฆ

#

Wooo! Maker Charades!

#

[be patient everyone -- live broadcast gremlins are causing technical difficulties] blinka

rocky reef
#

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

nova totem
#

Good morning!

sterile forge
#

good morning to all

upbeat coral
#

Putting satisfying their hunger in front of the show apparently has not paid off very well

waxen thistle
#

Sometimes you're the lightning bolt, sometimes you're lightning rod.

rocky reef
waxen thistle
#

@rocky reef Neither Youtube or Twitch have come back up yet.

upbeat coral
#

nor

sterile forge
#

noe twich has but no youtube

waxen thistle
#

.....hmm. I'm getting no Twitch at all. Very odd.

nova totem
#

Just had twitch show up

waxen thistle
#

Twitch is back up ๐Ÿ™‚

#

Bleeps and bloops

upbeat coral
#

tunes and tones on twitch

waxen thistle
#

No Youtube yet.

#

Youtube is up, bleeps and bloops.

upbeat coral
#

veja du/

sterile forge
#

youtube just came up

rocky reef
#
waxen thistle
#

I'm getting serious Rey's staff vibes from that handle ๐Ÿ™‚

rocky reef
waxen thistle
#

I'm a real fan of this project!

amber sluice
#

What filament do you all use? And will Adafruit sell filament?

rocky reef
wise iris
#

did you try using pinking shears? did/would that help?

solid wyvernBOT
rocky reef
#

we'll try these out

upbeat coral
#

How about the rainbow celephane that Erin St Blaine uses in her projects

#

Vary the color and brightnes of the neopixels?

wise iris
#

designed to resist fraying

rocky reef
split gazelle
#

late to the party but good morning folks

waxen thistle
#

A maker is never early nor late -- she arrives exactly at the time she intends.

split gazelle
#

looks super cool!

rocky reef
hard hollow
waxen thistle
#

At this current rate, the next 50 will be in a few short months ๐Ÿ™‚

split gazelle
#

the stemma speaker is my favorite

rocky reef
waxen thistle
#

Thanks for another fun show!

tribal jay
#

great show!

split gazelle
#

thanks for a great show!

nova totem
#

great job guys

hard hollow
#

yay thanks folks cya tonight ๐Ÿ™‚

rocky reef
#

thanks for hanging out folks!

waxen thistle
#

Good evening all you wonderful folks! I hope your week has been amazing so far! adabot

nova totem
#

Good evening! Time for the best mid-week break there is

split gazelle
#

good evening folks

lilac tusk
#

good evening everyone

timid plover
#

kjjkko

open girder
lilac tusk
#

fills up fast

open girder
waxen thistle
#

Live on Twitch!

viral sail
#

Hi everyone!

drifting arch
#

Mornin' all

#

What's the deal with show'n'telling products we're going to sell ourselves...is that ok?

rapid hornet
#

yup, that's ok

clever summit
#

Get @drifting arch on!

#

Hi there @rapid hornet !

drifting arch
#

@clever summit I've gone to bed ๐Ÿ˜›

rapid hornet
#

hi @clever summit !

clever summit
#

WHAT! You lazy bast.... ๐Ÿ™‚

drifting arch
#

Though Emma is up and watching TV....she couldn't sleep...

#

Hmmm...I'll get up...could be fun to show some stuff...

nova totem
#

I know the temperature I built a weather station ๐Ÿ™‚

sterile forge
#

@gaunt plume elm27 is a car to can bus interface used by most OBD2 controllers

robust horizon
#

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...

clever summit
#

Sorry @rapid hornet can't participate in your next live stream, we are having a kickoff. You will need to unit test troll yourself!

viral sail
#

Looking forward to that @haughty quiver

rapid hornet
#

haha, ok. the september 11th one will be september 9th for cp day

frail oracle
#

Awesome Vulfpeck t-shirt, @haughty quiver !

clever summit
#

Oh, a wednesday! Excellent.

rapid hornet
#

lol, ๐Ÿ’ฏ

haughty quiver
#

Right on, thanks @viral sail

viral sail
#

Cool astro project.

#

Here's where to get the Moon phase info https://svs.gsfc.nasa.gov/4768

waxen thistle
#

This project shoots for the moon!

low fractal
#

Yay dragons.

balmy tinsel
#

I love the split ergo board!

wanton dome
balmy tinsel
#

Thanks I'll check it out!

wanton dome
#

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

waxen thistle
#

Let's keep making CircuitPython "too easy" ๐Ÿ™‚

solid wyvernBOT
wispy linden
#

watching the Adafruit Show & Tell makes me think .. "damn, its been a week already? I'm still working on last weeks projects"

wanton dome
#

@wispy linden word

waxen thistle
#

Rock on @split gazelle ๐ŸŽธ

drifting arch
#

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)

nova totem
#

That's real cool @split gazelle cool to see those projects interact

split gazelle
rapid hornet
#

I think the 4k one is also actually an 8k too

#

they just don't tell you

waxen thistle
#

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.

rapid hornet
#

nice work @lilac tusk !

lilac tusk
#

Thanks! ๐Ÿ™‚

waxen thistle
#

๐Ÿฆ ๐Ÿ„ blinka

lilac tusk
rapid hornet
#

@lilac tusk what do you plan on putting on the fpga?

lilac tusk
#

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 ๐Ÿ™‚

waxen thistle
#

Ooo! Another ruler! ๐Ÿ“

lilac tusk
#

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

waxen thistle
#

Electronic ruler projects really measure up!

clever summit
drifting arch
#

Thanks @clever summit

viral sail
#

Nice work everyone. Thanks for sharing.

nova totem
#

Nice work everyone

split gazelle
#

@drifting arch i really like the badger, sharp artwork

clever summit
#

Good stream! Thanks all!

waxen thistle
#

Not necessarily a poster, but one of my favorite wall decorations ๐Ÿช

split gazelle
#

great projects everyone!

waxen thistle
#

Thanks for sharing all your wonderful projects and amazing talent!

open girder
haughty quiver
#

Thanks everyone!

lilac tusk
#

I'm blown away every week with everything people make ๐Ÿ™‚

waxen thistle
#

We build because we need to, because we want to, because we can.

#

Live on Twitch!

open girder
waxen thistle
#

Be the change you want to see in the world.

open girder
#
Adafruit Industries - Makers, hackers, artists, designers and engineers!

Adafruit has had paid day off for voting for our team for years, if you need help getting that going for your organization, let us know โ€“ we can share how and why we did this as well as the gโ€ฆ

waxen thistle
#

You don't need to run a dinosaur park to encase things within resin! ๐ŸฆŽ

split gazelle
#

i don't know what i dig more, the project or the beat

drifting arch
#

Thanks for share ๐Ÿ™‚

#

That beat tho... ๐Ÿ™‚

#

adafruitpride would rather watch Adafruit vids than pewds

rustic oyster
#

pewds is how i know i'm old

waxen thistle
#

โฑ๏ธ ๐Ÿšช 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.๐Ÿšช โฑ๏ธ

solid wyvernBOT
waxen thistle
glad mortar
#

yay npi

#

SPE is super interesting

waxen thistle
robust horizon
#

canbus is much slower than 1Gb/s

waxen thistle
#

PCMCIA: People Can't Memorize Computer Industry Acronyms

glad mortar
#

the daisy chaining aspect is the most interesting part imo, that can simplify so much stuff

balmy nova
#

Neat, I wonder what volts and amps it can output.

waxen thistle
viral sail
#

I can see individual atoms. ๐Ÿ™‚

waxen thistle
#
glad mortar
#

are there resistors built-in for that rgb button?

robust horizon
waxen thistle
robust horizon
waxen thistle
#
glad mortar
waxen thistle
narrow sonnet
#

My Dad and I have discussed making a miniature dark ride diorama

#

pneumatics might be a cool way of doing small movements

open girder
#

pneumatic dioramas sounds great

#

that should be an art class ๐Ÿ™‚

narrow sonnet
#

I have a cousin who has done a lot of full-scale animatronics work with pneumatics. expensive stuff

#

at least it was

drifting arch
echo canopy
#

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 ?

narrow sonnet
#

woot for the mention ๐Ÿ™‚

rustic oyster
#

the big guys do it too: disney's flight of passage ride seats use pneumatics for the "breathing".

drifting arch
#

Thanks for letting me promo.

robust horizon
#

With the photo I can appreciate it better than on the livestream @drifting arch

drifting arch
waxen thistle
#

Very nice newsletter @clear matrix and @spring heath!

#

Thanks for another awesome evening of shows @open girder!

viral sail
#

Thanks @open girder and good night. ๐ŸŒ”

split gazelle
#

Excellent newsletter and excellent shows. Another super excellent Wednesday โšก๏ธ

rustic oyster
#

good show!

#

you know, if MIPS is the sorta cliff you want to hurl yourself off of ๐Ÿ™‚

prime sentinel
#

Dual 3-input NOR gate. The Apollo guidance computer was built out of a whole bunch of these.

lilac tusk
#

Super cool

gusty wedge
#

@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 ๐ŸŒ•

clear matrix
#

Thank you @waxen thistle!

waxen thistle
#

Good afternoon all you wonderful people! adabot

sterile forge
#

@haughty quiver Hello from SE Pennsylvania

haughty quiver
#

Hi there @sterile forge

waxen thistle
#

bleeps and bloops on twitch!

haughty quiver
#

oh good!

inner spade
#

ads and bleeps and bloops on YT!

sterile forge
#

Youtube alive

inner spade
#

Voice sound levels peaking at -6db. Perfect!

eager sapphire
#

Well that explains why this is called John Park's Workshop!

cinder wind
#

John's gonna eventually cover his entire shop in LED panels

ember needle
#

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

waxen thistle
nova totem
#

Good afternoon (though stuck having to mute things for the moment)

inner spade
#

Congrats on the new show, @haughty quiver !

cinder wind
#

"Top Ten 10k Resistors, This Week On John Park's Product Pick Of The Week!"

waxen thistle
#

Top 10 Hidden Appearances of Adafruit Products in TV & Film.

Number 7 will SHOCK you!

nova totem
#

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

shell mason
#

escape Portal?

#

John Super Sonic Park

waxen thistle
#

Still live!

cinder wind
#

I'm continuously astounded how deep these MakeCode games are

inner spade
#

Beeping. Socks are dry.

waxen thistle
#

Or there's a flood and they're wet.

inner spade
#

BRB

waxen thistle
#

Or they've been stolen and that's the anti-sock theft alarm.

inner spade
#

We've had one or two run away before.

sage aspen
#

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.

solid wyvernBOT
nova totem
#

I was doing all this network reading and JSON parsing on Arduino in C... CircuitPython is so much easier

sage aspen
#

I'm here

waxen thistle
#

Audio is working ๐Ÿ™‚

#

@haughty quiver Your window is off the screen

sterile forge
#

can't see your screen

waxen thistle
#

๐Ÿ‘

#

Thanks @haughty quiver for another fun Thursday afternoon!

inner spade
#

Thank you!

haughty quiver
#

thank you all!

waxen thistle
#

@haughty quiver The stream is still live -- bleeps and bloops serenading us ๐Ÿ™‚

cinder wind
#

bloops forever!

wispy linden
#

Hello all, may I ask what time @rapid hornet 's Deep Dive stream starts?

fallow fractal
#

?showtimes

arctic abyssBOT
#

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

wispy linden
#

amazing thanks

fallow fractal
#

;)

wispy linden
#

Mmmm 5am Singapore time, I will set an alarm then lol

rapid hornet
#

getting started now

simple fractal
#

ITS CAT cam!!!

#

now i will leave

#

well i finally got my vmware workstation working, 15.5 seems to co-exist with hyperv

#

hey

drifting arch
#

You need a wireless cam....on her...then we get a real CatCam

simple fractal
#

cats are not liking harnesses

#

i remember attaching a halloween costume to our Siamese. He was not amused

drifting arch
#

Jonny B says hi...he's just gone out to a Bar ๐Ÿ˜›

simple fractal
#

bar sounds nice. i havent been to a bar since ....

prime sentinel
#

Depends on the cat. Our Siamese decided the harness was no big deal.

drifting arch
#

Hej Spoket ๐Ÿ‘ป

simple fractal
#

hmm, ours was a special cat. hated everyone equally

sterile forge
#

good day today

#

yep

simple fractal
#

he refused to eat as a kitten.

drifting arch
#

We have a kids cartoon character in Sweden called "Laban lilla spรถket"

simple fractal
#

he would look at the food and back at my mother, and walk away. Turns out he liked to eat mice.

#

translated?

waxen thistle
#

Live on Twitch ๐Ÿ™‚

#

I know, I'm a bit late

simple fractal
#

i could have a beer.

waxen thistle
#

Good to see everyone, hope y'all are doing well

drifting arch
simple fractal
#

scary

waxen thistle
#

That's good advice, focus on yourself!

simple fractal
#

nice buttons

waxen thistle
#

Indeed, the focus is a bit soft

drifting arch
#

It's good enuf

waxen thistle
#

Fuzzy camera and fuzzy logic are fine ๐Ÿ™‚

drifting arch
#

Your eyes look like Don Jr's ๐Ÿ˜„

simple fractal
#

its a nice soft focus. like vaseline

#

wrinkles are gone

drifting arch
#

That's as political as I'll go...don't worry ๐Ÿ™‚

waxen thistle
#

People pay good money for these soft instagram filters ๐Ÿ˜›

simple fractal
#

i looked great when my webcam was 640x480

drifting arch
#

I'm not looking at you anyway, spook is in focus

simple fractal
#

true. we are being somewhat troll like, or ogre.

drifting arch
#

Ah...

#

Hi Other Cat

#

Get a PTZ cam for CatCam...and let me control it so you can focus on the stream.

simple fractal
#

well thats not super pricey.

drifting arch
#

Code code code....

simple fractal
#

also available through digikey ,

drifting arch
#

Never ever write "hopefully final.....", it'll change for sure ๐Ÿ˜‰

simple fractal
#

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

drifting arch
#

I am literally right now making a new board that the soicbite connector will be PERFECT for.

simple fractal
#

that is very neat

drifting arch
#

ok....That's even better!

#

can you post the link to the datasheet

simple fractal
#

i'm amazed how much i get out of these dives.

rapid hornet
simple fractal
#

i'm very interested in the CAN work being done in CP

drifting arch
#

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

simple fractal
#

oshconnect is some sort of insurance company , unfortunate name

drifting arch
#

Check out stdc14

simple fractal
#

maybe OSHWconnect.

#

i will have to scroll this later and see what wokrs

drifting arch
#

@rapid hornet I can fix the website...it's my thing ๐Ÿ™‚ just remind me!

simple fractal
#

not super crazy about that 5 cycles thing.

drifting arch
#

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

solid wyvernBOT
drifting arch
#

You really need to Unit Test @rapid hornet

simple fractal
#

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

gusty wedge
#

I'm missing the show :(.... (meetings ๐Ÿ˜ฆ )

waxen thistle
#

I know how you feel -- fridays at 5pm is the rush before the weekend.

simple fractal
#

and scott did say this was 'very very easy'

timid plover
drifting arch
#

I heard a vacuum/hoover ๐Ÿ˜„

simple fractal
#

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

wispy linden
#

Hello all, just when I get a Saola board to play along at home we move to Kaluga ๐Ÿ˜†

simple fractal
#

Put J4 jumper on if wanna control RGB.

#

oops

#

wrong. paste

drifting arch
#

@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"

simple fractal
#

i guess i should connect my kaluga and 'play along'

#

i know, sparkfun , but maybe they know something

lilac tusk
#

FTDI drivers are nice

simple fractal
#

lol, after the famous 'destroy clone' thing

lilac tusk
#

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

drifting arch
#

But you need to get it to find the device first ๐Ÿ˜‰

glad mortar
#

jeez thats a feature overloaded board

simple fractal
#

here it showed instantly

#

but i'm in a vm on windows

drifting arch
#

But arch linux is a bit different

simple fractal
#

running popos

tropic inlet
#

Bin the hub!

#

it will drive you mad eventually

drifting arch
#

You never need 5v connected if you're powering it another way.

simple fractal
#

i toss old hubs. and mostly connect directly

#

i am flashing mine as well

drifting arch
#

I don't even think I have a USB Hub

simple fractal
#

its a race

#

my build appears to be slower

drifting arch
#

Unless you count the built in ones in the Mac...

simple fractal
#

well everything has build in hubs. i guess

drifting arch
simple fractal
#

i'm actually liking this linux vm.

drifting arch
#

IT'S THE HUB ๐Ÿ˜‰

simple fractal
#

lol

#

just about to flash

drifting arch
#

D+ and D- connected right?

tropic inlet
#

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..

tropic inlet
#

It isn't currently wired

wispy linden
#

I have a Cucumber ESP32-S2 board, it has both USB-C's on the board

tropic inlet
#

you would have to mod it yourself

simple fractal
#

i hAVE the cucumber also. works fine.

drifting arch
#

@rapid hornet I think there is no pull-up on D+

#

D+ needs a pullup...but it's NC

simple fractal
#

i did flash mine. exept i dont have hte breakout

drifting arch
#

oh wait, they are pull-down

simple fractal
#

so i will leave the usb connection as a exercise for others

glad mortar
#

pullups are part of the chip, not something you want fixed

#

its up or down depending on if you are host or device

simple fractal
#

as an aside here are links for jtag

tropic inlet
#

Have you got the right pins?

drifting arch
#

@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

tropic inlet
#

ESP S" GPIO20 = d+, GPIO19 = D- according to datasheet

drifting arch
#

Did you remove your hub now?

tropic inlet
#

Lol hub..

drifting arch
#

How many โ˜• do you owe me now Scott? ๐Ÿ˜›

glad mortar
#

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.

drifting arch
simple fractal
#

lol

drifting arch
glad mortar
#

Making a good USB hub is on my list :)

#

got so sick of bad usb hubs

drifting arch
#

@glad mortar I'm REALLY interested in your tablet btw....it looks amazing!

glad mortar
#

thanks :)

drifting arch
#

@rapid hornet I can't believe you had that...

simple fractal
#

i'm searching for my usb breakout. its n a box. what box.

drifting arch
#

@simple fractal I have so many USB cables...I just chopped one.

simple fractal
#

sigh, true

wispy linden
wind spoke
#

So Kaluga will be in 6.0.0-alpha4 since alpha3 is just out...

simple fractal
#

the spreadsheet has the pins as well

drifting arch
#

I'm hungry...time for a 01:00 snack...

simple fractal
#

i'm having some local brie and crackers

#

and its only 4PM here

drifting arch
#

Mutiple cursors Scott!!

#

I'll have Skorpor and Brie....which is nearly the same.

simple fractal
#

i realized in had an old sublime text license. so upgraded it to V3.

#

hm, skorpor is rye

#

?

drifting arch
#

Nope, it's like roasted baguettes...

simple fractal
waxen thistle
#

With a nice homemade roasted garlic butter?

simple fractal
#

i'm trying not to have bread. so hard

#

our local baker is only open friday->sunday

#

and i had to walk by today.

drifting arch
simple fractal
#

let me go find photos

drifting arch
#

This is the kind of skorpor I like...it's crispy bread

waxen thistle
#

I'm a huge fan of Trader Joe's garlic naan -- toast it, little butter, slice of cheese and ham. What a delicious sandwich.

simple fractal
#

i love his poppy seed sourdough

wispy linden
#

@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.

simple fractal
#

@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

wispy linden
#

So raise a PR then amend the ?VID?

simple fractal
#

i thought you were meditating

wispy linden
#

Nice ๐Ÿ™‚ raising a PR for this too

drifting arch
#

Wow...now I see you need a shave Scott!

wispy linden
#

boom ๐Ÿ™‚ PR raised

timid plover
waxen thistle
#

Thanks for another Deep Dive @rapid hornet!

tropic inlet
#

Thanks @rapid hornet , I will have to go back as missed first half..

rapid hornet
#

thanks all!

modest vector
#

Thanks Scott.

manic vine
#

Thanks

simple fractal
#

thanks, great dive

modest vector
#

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 ๐Ÿ™‚

rapid hornet
#
  • usb vid is not recurring cost, just once
timid plover
#

is there perhaps some CI configuration edit undone ?

timid plover
#

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

vivid rune
#

that cucumber board looks nice!

wind spoke
#

@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.

prime sentinel
#

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.

haughty quiver
#

@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!

wind spoke
#

@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.

open girder
glad mortar
#

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 :)

solid wyvernBOT
light stump
#

Just saw the stemma legos. Will they have electrical connections through LEGO?

robust horizon
#

?showtimes

arctic abyssBOT
#

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

haughty quiver
#

@light stump no, the LEGO connections are mechanical only, the electrical connections are through the cables or soldered pin headers.

lilac tusk
#

@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

haughty quiver
sterile forge
#

?showtimes

arctic abyssBOT
#

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
#

Hello!

haughty quiver
#

hay!

#

Almost ready to go, thanks for your patience!

nova totem
#

hello all

lilac tusk
#

hello

inner spade
#

Drum machine!

nova totem
#

no audio

sterile forge
#

no audio

inner spade
#

@haughty quiver audio is not working

#

Audio stopped working after Lady Ada vids.

#

@haughty quiver Glitch alert doesn't seem to be working.

rare carbon
#

No sound on your live stream!

viral sail
#

He's going to have to repeat the whole show. ๐Ÿ™‚

inner spade
#

Lars is leaning on the cough button.

sterile forge
#

no audio whats so ever the whole show after the lady ada vidoe

nova totem
#

Can hear you now

viral sail
#

It's on.

nova totem
#

Behind the scenes view

inner spade
#

Audio is back on YT now.

solid wyvernBOT
viral sail
#

@haughty quiver what do you use the calibrate the altimeter calculation, since it's dependent on your local barometric pressure?

waxen thistle
#

In the middle of a work call, but I wish y'all a very awesome first broadcast of the new show!

viral sail
#

Squoze ๐Ÿ™‚

sterile forge
#

How about using a ziploc bag?

viral sail
#

Great show, thanks @severe zodiac

haughty quiver
#

Good idea @sterile forge

nova totem
#

Great show

haughty quiver
#

Thanks so much for participating in the first wacky episode!

inner spade
#

Super show even with the coffee break segment!

sterile forge
#

Well you'll be more carefull with the videos

#

BTW thanks for redoing the second segment

haughty quiver
#

@viral sail I believe you essentially calibrate it by entering the current ground level pressure reading from a aviation service or other online resource.

haughty quiver
rocky reef
#

good morning folks!

#

Adafruit is open, safely ... and shipping orders at this time within 1 to 2 business days https://www.adafruit.com/opensafely

normal belfry
#

Hello everyone!

@Pedro

nova totem
#

Good morning

normal belfry
#

Its night here in India btw

rocky reef
waxen thistle
#

Good morning all you wonderful folks ๐Ÿ™‚

nova totem
#

She mentioned something about it on Sunday so you're probably okay

sterile forge
#

good morning to you too.

normal belfry
#

Good morning , afternoon , evening to everyone . :)

sterile forge
#

thanks

shell mason
#

so snappy

nova totem
#

That's a great idea using the vinyl

rocky reef
waxen thistle
#

Vinyl is final. ๐Ÿ™‚

#

To boldly go into the Vinyl frontier.

rocky reef
shell mason
#

one thing could be engraving too if dont want to use vinyl cutter

rocky reef
shell mason
#

or maybe make LED strip holder support where you just slide the LED strip to case

rocky reef
nova totem
#

Really similar to how I'm lighting 3d printed lithophanes. Really nice case design

solid wyvernBOT
shell mason
#

one stemma to rule all stemmas

#

that need some electronics perhaps to light some textures on it

waxen thistle
#

Thanks for another fun show!

shell mason
#

Great show

hard hollow
#

thanks for hanging out folks! ๐Ÿ˜„

shell mason
#

the curve knife with some small led could make it more cooler

viral sail
#

Thanks @rocky reef & @hard hollow . See you tonight.

rocky reef
#

thanks for hanging out folks!

nova totem
#

Thanks guys great show, had to run for work so will re-watch the end!

paper schooner
#

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.

trail zephyr
#

I usually end up missing the live stream due to work as well.

#

But at least it's up on YouTube after

paper schooner
#

@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?

prime sentinel
#

Some of the black filament I've seen isn't very densely colored, a thin layer of it is fairly transparent.

paper schooner
#

perhaps hitting it after with some black primer paint?

tribal jay
#

or maybe adding black gesso on the inside might help

paper schooner
#

black electrical tape.. or gafe tape!

robust horizon
#

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"

hard hollow
#

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'.

paper schooner
#

@hard hollow I was just thinking of using something else for the vinyl. Still want the black acrylic.

hard hollow
#

@paper schooner oh for sure! ill make STLs of the decals so folks can print them too, good idea ๐Ÿ™‚

split gazelle
#

good evening folks

nova totem
#

Good evening (or night and morning for some)

lilac tusk
#

Heyo

viral sail
#

Hi everyone.

waxen thistle
#

Good evening all you wonderful folks.

drifting arch
#

Good middle of the night ๐Ÿ™‚

deep scarab
#

Good afternoon!

clever summit
#

Here we go again

open girder
steep pilot
#

hello all

rapid hornet
#

hi all!

deep scarab
#

So big!

waxen thistle
#

Or what a small Digikey employee next to a normal sized clue.

deep scarab
#

Well, whatever the case, he definitely has a Clue.

drifting arch
#

helllooooooowwww

#

@clever summit For you ๐Ÿ™‚ Unit testing ๐Ÿ˜„

fair fulcrum
#

the snakiest day

sterile forge
#

It multiplies

clever summit
#

I take the full blame for Scott adding unit tests,

rapid hornet
#

๐Ÿ˜„ how'd the camera look?

waxen thistle
#

Very sharp and smooth

rapid hornet
#

k, awesome. I got fed up with the focus on the other one

split gazelle
#

yeah it looked good @rapid hornet

#

i legit love the animated one

waxen thistle
#

The opening whistling song from the animated movie was sped up, and became the Hamster Dance song.

drifting arch
#

Everything I do...

#

I doooo it for yoooooouuu

leaden trail
#

"Unlike others, I can do a English Accent" - Robin Hood - Men in Tights

shell mason
#

its Park, John Park

split gazelle
#

i enjoy the beastie boys quote and credits @haughty quiver

drifting arch
#

I'm confused...the National Geographic cover, was there an adafruit board on it...or??

haughty quiver
#

LOL that was it @drifting arch LOL

drifting arch
#

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

nova totem
#

@drifting arch same, somewhere I have the piano music for it (and the rest of the soundtrack)

drifting arch
#

Don't scare the cat Collin!

deep scarab
#

Ha! ๐Ÿฆœ

drifting arch
#

We need BitLuni to get party parrot on his mega matrix

rapid hornet
#

awesome @split gazelle !

waxen thistle
#

Price of Bitcoin ๐Ÿฆœ

rapid hornet
#

2020 is going sideways

waxen thistle
#

@rapid hornet If only it was, that'd be an improvement ๐Ÿ™‚

split gazelle
#

thanks @rapid hornet !

nova totem
#

Thanks everyone, hope I have my next idea done soon to show off again

shell mason
#

price of CircuitPython Coin

deep scarab
#

Such great tones.

viral sail
#

Great work everyone. Thanks for sharing.

drifting arch
#

Impressive!!

split gazelle
#

that's a fabulous synth

#

great projects everyone!

waxen thistle
#

Indeed, awesome! Thanks to everyone who shared!

leaden trail
#

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.

drifting arch
#

I think I'll have something to show in 2 weeks...

waxen thistle
#

Show what you want, when you can ๐Ÿ™‚

lilac tusk
#

Iโ€™ll have a few things next week ๐Ÿ˜ฌ

fair fulcrum
#

me too..... I took too long troubleshooting my demo because it has been a few weeks! lol..... ARG!

waxen thistle
#

ooo, new jammin' beats!

open girder
waxen thistle
#
fair fulcrum
#

does it check from the Stemma QT's that we already ordered?

viral sail
#

Would the plural of Stemma be Stemmae?

raw tapir
#

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. feliciaFine

open girder
#

@fair fulcrum it does not, it's only set we have that is part of the free offer starting now

fair fulcrum
#

interesting =^-^= i was going to be making another Stemma QT order today anyhow! cant wait to see what I gets =^-^= thanks!

worldly anvil
#

Iโ€™d like to ask where would I be able to order these thin sheets with conductive traces.

tulip canyon
#

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.

fair fulcrum
#

when you cant re assign the I2C address! thats when LOL

#

unless you get a multiplexer, then you need like 5?

robust horizon
#

"squoze"

fair fulcrum
#

black hole lol

robust horizon
fair fulcrum
#

yea, i just got one of those in the mail literally yesterday. =^-^=

waxen thistle
#

โฑ๏ธ โ˜Ž๏ธ .............. โ˜Ž๏ธ โฑ๏ธ

[ @haughty quiver's MakeCode Minute was muted for 2min 12sec ]

fair fulcrum
#

โœŠ๐Ÿฟ

open girder
#

if ya wanna try the app the QR code works via the video too

mellow ibex
robust horizon
#

yup the qr code link works here @open girder

mellow ibex
#

I hope I'm in the correct place for asking questions...

robust horizon
#

closed captions ๐Ÿ’ฏ

open girder
#

@mellow ibex yep, we'll get to questions later in the show

mellow ibex
#

OK - thanks.

waxen thistle
#

Confirmed -- the QR code works like a charm ๐Ÿ™‚

robust horizon
#

@mellow ibex what's the difference -- the wavelength it's sensitive to?

#

I found GUVV-S10SD but not GUVA-S10SD

mellow ibex
#

Yes, 222nM is appearing to be the magic number.

#

222 nm

robust horizon
#

@mellow ibex got it

robust horizon
#

leaderboard? ๐Ÿคฃ

mellow ibex
#

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...

waxen thistle
#
Adafruit Industries - Makers, hackers, artists, designers and engineers!

Adafruit has had paid day off for voting for our team for years, if you need help getting that going for your organization, let us know โ€“ we can share how and why we did this as well as the gโ€ฆ

rapid hornet
#

poll workers do usually get paid I think

open girder
#

@rapid hornet they do! for old navy they get paid by old navy and in locations that pay too

#

(adafruit does too)

solid wyvernBOT
waxen thistle
#

So for some folks in the right location, you can do your civic duty and get paid...twice. Seems like a pretty sweet deal ๐Ÿ‡บ๐Ÿ‡ธ

median relic
#

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"!

open girder
#

thank you @median relic !

waxen thistle
#

I've mentioned it before -- that would be a great title to lose, not being the most prolific open source hardware company ๐Ÿ™‚

open girder
#

this is how we do it, one person at a time, around the USA together

rapid hornet
#

awesome @median relic

open girder
#

last week a person here also signed up

rapid hornet
#

as a poll worker you can usually vote absentee too

waxen thistle
fair fulcrum
#

๐ŸŽ†

waxen thistle
#

Even if you cannot vote, you can do so much to be involved in the civic process -- regardless of your country ๐Ÿ™‚

median relic
#

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!

fair fulcrum
#

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.

waxen thistle
robust horizon
#

0% infill

#

or is the part just really thin

fair fulcrum
#

@hard hollow @rocky reef do you guys ever use Simplify 3D?

robust horizon
#

I saw infill the second time the hilt/crossbar went by

fair fulcrum
#

illuminati confirmed

waxen thistle
#

How much feature overlap is there between the Analog Discovery and the Digital Discovery?

fair fulcrum
#

do protocol analyzers have a max MHz rating like waveform analyzers or is that covered by the sample rate?

waxen thistle
#
#
robust horizon
#

hmmm I guess if I wanted 5V from car voltage this would work a treat

waxen thistle
fair fulcrum
#

yea, I think it is crazy how flexable some of the RC world boost buck converters are. but they are really expensive

waxen thistle
ashen hound
#

Can it be used for Primary Lithium Battery chemistries?

echo canopy
#

Question for the show: LC709203F: any guess on the power consumption?

ashen hound
#

I am going through the datasheet but it is not entirely clear.

nova totem
#

Any recommendations for a contact sensor (like the touch sensors) but between two objects? Want something as flat as possible

rapid hornet
#

does it have spi flash?

frail oracle
#

Question: what would I need to design a LoRa concentrator PCB from scratch?

fair fulcrum
#

YES small boards with a stemma connector, that will be in my collection when it comes out.

waxen thistle
#

How much feature overlap is there between the Analog Discovery and the Digital Discovery, if one was going to get both?

ashen hound
#

thanks!

frail oracle
#

Question: what would I need to design a LoRa concentrator PCB from scratch?
@frail oracle Like what ICs would be necessary, etc.

median relic
#

Do you sell HackSpace yearly subscriptions? Looks like about $120 per year, but includes Circuit Playground Express, through their website.

fair fulcrum
#

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?

waxen thistle
#

Thanks ๐Ÿ™‚

frail oracle
#

Any recommendations for getting started in RF engineering and RF design?

lunar girder
#

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?

robust horizon
#

can you put a footprint for SPI flash on the bottom side?

fair fulcrum
#

you guys have everything going for you. You guys are using all of the things that people consider weaknesses as strengths. โค๏ธ

echo canopy
#

Any tips for Soldering pads with really tight spacing ? Less than 2mm spacing

lilac tusk
#

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

nova totem
#

Photography I'll take 500 pictures to get 1 I like, so yeah

fair fulcrum
#

now i need to go have some cake... thanks ladyada....

waxen thistle
#

Thanks for another awesome set of shows tonight!

robust horizon
#

See everyone next week for circuitpython day!

lilac tusk
#

Woo!

split gazelle
#

Thanks for a great set of shows!

nova totem
#

Great shows, thanks to all

lilac tusk
#

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 ๐Ÿ˜„

fair fulcrum
#

@lilac tusk awesome! did you use a simulator while writing it?

lilac tusk
#

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

fair fulcrum
#

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.

lilac tusk
#

It takes time to get better, and in time you will ๐Ÿ˜„

fair fulcrum
#

the simulator extention in VScode is pretty useful

#

yea =^-^= thanks. I keep trying lol

waxen thistle
#

@clear matrix and @spring heath -- thanks for another excellent weekly Python newsletter! adabot

inner spade
#

So much going on in CircuitPython world! Thanks to @spring heath for the comprehensive weekly compilation and @clear matrix for the exceptional narrative.

viral sail
#

Thanks @open girder and good night. ๐ŸŒ–

fallow fractal
#

?showtimes

arctic abyssBOT
#

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

clear matrix
#

@inner spade @waxen thistle Thank you both! Glad you enjoyed it!

haughty quiver
#

IS THIS THING ON

inner spade
#

Yes.

haughty quiver
#

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!

viral sail
#

Not on YouTube yet.

haughty quiver
#

it's on the way any moment now!

viral sail
#

We're live.

inner spade
#

Bleeps and bloops on YT!

haughty quiver
#

How many bleeps?

#

quotas must be met, etc.

eager sapphire
#

I stopped counting bleeps at like twelve of them

nova totem
#

42 beeps

rapid hornet
#

hi all!

inner spade
#

Sorry. Was only listening for bloops today.

hard hollow
#

hey folks

wispy valley
#

Hi all!

waxen thistle
#

Good afternoon all you wonderful folks! adabot

alpine bane
#

Hello everyone ๐Ÿ™‚

waxen thistle
#

I'm fashionably late ๐Ÿ˜‰

#
rapid hornet
#

Reminder, I'll be streaming a deep dive after JP is done or 2pm pacific

wispy valley
#

Bit late for me but look forward to catching up with it tomorrow!

paper schooner
#

running smoothly

cinder wind
#

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...

โ–ถ Play video
waxen thistle
hard hollow
#

totally picked up a pack of those

cinder wind
#

wow that black LED acrylic makes those displays look so nice

sage aspen
#

๐Ÿ‘‹

finite solstice
#

Adafruit was out the last time I checked but, Tap plastic has it in stock and will cut pieces for you.

waxen thistle
#

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

eager sapphire
#

"Any sufficiently advanced technology is indistinguishable from magic." - Clarke

paper schooner
#

"I'm Batman" -- Batman ๐Ÿ™‚

waxen thistle
#

Just don't feed it after midnight.

nova totem
#

Which Adafrut IO protocol are you using? HTTP or MQTT?

solid wyvernBOT
sage aspen
#

@nova totem using HTTP

nova totem
#

Thanks, I need to try this on CP, did it in Arduino by hand... less fun

waxen thistle
#

@haughty quiver Thanks for another awesome show!

sage aspen
#

Yeah, I've done it in both. It took much less time to set up in CP.

viral sail
#

Thanks @haughty quiver

nova totem
#

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

paper schooner
#

gr8 show JP

sage aspen
#

For Arduino, I just used the AdafruitIO library

eager sapphire
#

Thanks JP

inner spade
#

Thanks @haughty quiver !

haughty quiver
#

Thank you all!

inner spade
#

Nice work on the display features and functionality @sage aspen

sage aspen
#

Thanks @inner spade

finite solstice
#

Yes, its really smooth @sage aspen

simple fractal
#

just getting my discord running

viral sail
#

Hi @rapid hornet

#

Nice.

inner spade
#

Wow. As long as it's in front of your eyes, right?

nova totem
#

I have twitch up but not chatting on it

simple fractal
#

Yes, twitch chat hmm,

inner spade
#

Woah. We need a purchase link for that camera!

waxen thistle
#

Good afternoon again all you wonderful folks!

viral sail
#

@proper trench needs one of those cameras now too. Very fast autofocus.

waxen thistle
#

Which camera is this again? [just joined]

rapid hornet
#

Sony ZV-1

waxen thistle
#

Thanks ๐Ÿ™‚

simple fractal
#

most streamers need fast autofocus.

nova totem
#

so basically a DSLR but just using it to stream?

#

looks great

simple fractal
#

it seems a bit over my budget for zoom meetings ๐Ÿ™‚

waxen thistle
#

I remember watching a few videos on the ZV1 -- bloggers really love it ๐Ÿ™‚

simple fractal
#

does look really good