Jon's Place

Sunday, August 31, 2014

NanoSeeker v2.0 PCB Running

So, this morning I populated one of my new boards, and hand-soldered a few of the through-hole parts needed for it to run...

NanoSeeker v2.0 PCB, Populated
Here's a video with a very simple script running, cycling the four LEDs on the board:


The script is from this page: http://micropython.org/doc/tut-leds

leds = [pyb.LED(i) for i in range(1,5)]
n = 0
while True:
  n = (n + 1) % 4
  leds[n].toggle()
  pyb.delay(50)
I'll be testing the individual parts on this board over the next little while...

3 Comments:

  • I can't see the video on my phone. And in chrome it says its a private video.

    By Blogger Unknown, At August 31, 2014 at 9:22 PM  

  • Do you plan to make the NanoSeeker kit available through AdaFruit or similar company? Would be nice toy :-).
    Bluetooth-controlled Python-friendly REPL on AUV... :-)

    By Blogger Michał, At September 18, 2014 at 10:54 AM  

  • This project looks amazing. I stumbled upon it while searching for AUVs similar to Ziphius, an AUV running Python on a Raspberry Pi board. I can't wait to see the next update!

    Also, I second mjg's sentiment; I would love to see a kit (or something similar) for this project.

    By Blogger AA, At September 21, 2014 at 11:06 PM  

Post a Comment

Subscribe to Post Comments [Atom]



<< Home