nixiesp12/README.md

63 lines
2.1 KiB
Markdown
Raw Normal View History

2017-08-08 22:27:36 +00:00
# NixiESP12
## Intro
2017-05-31 17:56:41 +00:00
Yet another Nixie clock project!
Some highlights:
* K155ID1 driven IN-12A or IN-12B tubes for hour, minute, seconds
2017-08-08 22:49:41 +00:00
* BS107 driven IN-6 or similar neon bulbs for digit separation
2017-08-08 22:27:36 +00:00
* 74HC595 for serial to parallel conversion
* ESP8266 for time synchronization
* LM1117-3.3V and LM1117-5V regulators for logic power supply
* No tube step up converter on-board, pin headers for connecting
<a href="http://www.ebay.com/itm/DC-5V-12V-to-170V-DC-High-Voltage-NIXIE-Power-Supply-Module-PSU-NIXIE-TUBE-ERA-/322511957768?hash=item4b1735ef08">third party power supply</a>
2017-05-31 17:56:41 +00:00
* KiCad design with 3D models from http://miniwatt.info
Some KiCad screenshots:
<img src="nixiesp.png"/>
2017-08-08 22:27:36 +00:00
Photos:
<img src="photo.jpg"/>
2017-07-14 04:17:17 +00:00
2017-08-08 22:27:36 +00:00
## Install
2017-07-14 04:17:17 +00:00
Boot ESP8266 with program pin held low and flash MicroPython:
```bash
2017-08-25 21:45:57 +00:00
wget http://micropython.org/resources/firmware/esp8266-20170612-v1.9.1.bin
2017-07-14 04:17:17 +00:00
esptool.py --port /dev/ttyUSB0 --baud 460800 erase_flash
esptool.py --port /dev/ttyUSB0 --baud 460800 write_flash --flash_size=detect 0 esp8266-20170612-v1.9.1.bin
```
2017-08-25 21:45:57 +00:00
Upload main.py and boot.py and adjust network configuration in boot.py accordingly:
```bash
ampy -p /dev/ttyUSB0 put boot.py
ampy -p /dev/ttyUSB0 put main.py
```
2017-08-08 22:27:36 +00:00
## Assembly tips
Some cheap 1117V regulators don't offer short circuit protection
and once blown pass through input voltage,
make sure you get ones with protection otherwise you can fry ESP8266
or serial-to-parallel chips.
Once the PCB is milled or etched make sure you clean the 180V rails thoroughly,
that voltage is high enough to cross gaps of 0.1mm.
Once that happens it burns a thick dark trace into the fiberglass of PCB and
it's pretty tricky to clean up.
2017-08-08 22:49:41 +00:00
Use the bench power supply to gradually power up the device,
at 9V set current limiter to 0.5A max.
5V linear regulator can be omitted and bypassed if 5V wall adapter is always used.
Otherwise 6V-12V wall adapters are suitable,
Thincan DBE60 9V wall adapters are pretty much perfect for the job.
Note that the higher the input voltage the more power is dissipated
as heat on the 3.3V and 5V voltage regulators, thus at 12V the device gets really hot.