Skip to content

Instantly share code, notes, and snippets.

@zhivko
zhivko / esp32.md
Created October 30, 2016 14:57 — forked from morganrallen/esp32.md
ESP32 hacking notes

Basic hookup

As I plan to make a custom breakout board I wanted to solder as few connections as possible. I was able to boot the device, with UART (out at least) soldering the following.

PIN NAME
0 GND
1 3V3
2 EN
@zhivko
zhivko / minimal.py
Created December 15, 2015 09:48 — forked from clouetb/minimal.py
libpruio-0.2 python wrapper
#!/usr/bin/python
from pruio import *
from time import sleep
# Create a ctypes *pointer* to the pruio structure
io = pruio_new(PRUIO_DEF_ACTIVE, 0, 0, 0)
# Note the *pointer* dereferencing using the contents member
if not io.contents.Errr:
pruio_config(io, 1, 0, 0, 0)
for i in range(4):