Re: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-07-19 Thread gregebert
I created a separate user group https://groups.google.com/forum/#!forum/b7971-driver-board-user-group for neonixie members who are interested in building a clock with b7971 tubes using my PC board. As of now, I dont have any more PC boards. I have 2 boards running, but we need to have more

Re: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-07-08 Thread Paolo Cravero
Hi. > > The real question now is: How long can a raspi run without crashing ? > As all *ni systems, a RasPI can run for years unless there is a hardware failure or overheating. I've been (silently ;) ) collecting uptimes at work and I've seen servers that haven't rebooted for 1600+ days

RE: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-06-20 Thread neonixie-l
and have fun! - Steve -Original Message- From: neonixie-l@googlegroups.com [mailto:neonixie-l@googlegroups.com] On Behalf Of Paul Andrews Sent: Tuesday, June 20, 2017 8:08 AM To: neonixie-l Subject: Re: [neonixie-l] Re: Raspberry PI controlled Nixie display Good news. I had wo

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-06-20 Thread gregebert
If you want 10msec granularity, traditional Linux may not be the right choice. I did quite a bit of data-gathering (See my April 14 post in this subject), and got 64-bit serial packets to transmit , on average, in 32usec. Occasionally there is an outlier, on the order of milliseconds, due to

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-06-20 Thread Mitch
Greg, is I/O fast enough to support cross fades? For a really smooth fade, I think updates must be 10ms or less. -- You received this message because you are subscribed to the Google Groups "neonixie-l" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-06-20 Thread Paul Andrews
Good news. I had wondered about using a PI myself but was concerned with lack of realtimeness. BTW, in regular UNIX you would set your app up as a demon that runs at boot up. Crontab would not be the way to go. There should be a bunch of stuff in /etc/init.d or /etc/initd or something like

Re: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-06-19 Thread gregebert
Thought I would post a follow-up regarding a RasPi as a nixie controller. So far, using a RasPi Zero W for controlling my latest nixie clock (8-tube b7971) has far-exceeded my expectations: - No 'helper' FPGA is needed; there is far more than enough horsepower in the Pi to handle all of

Re: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-06-06 Thread gregebert
Thanks for the warning. Generally, I leave everything plugged-in 'forever', which is probably why I havn't had problems yet. -- You received this message because you are subscribed to the Google Groups "neonixie-l" group. To unsubscribe from this group and stop receiving emails from it, send

Re: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-06-06 Thread Terry Kennedy
On Tuesday, June 6, 2017 at 1:19:05 AM UTC-4, gregebert wrote: > > Photo here, and short video posted to YouTube at > https://youtu.be/OjQeW67viXw > Mostly unrelated, but... I've had bad experiences with devices very similar to those 2 10-receptacle boxes you have mounted on the wall behind the

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-06-05 Thread blkadder
Another option for a nixie socket/adapter would be the ones available from our friend Pete over at www.pvelectronics.co.uk. Pete is very active, and I have used his clock kits to build several clocks. I have also purchased the adapters you need to fix some of my horrible soldering jobs. Now

Re: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-06-05 Thread gregebert
I got my RasPi-based clock to display time last night, so proof-of-concept is done. Right now, I'm using seven b7971 tubes. All of the compute-related stuff is done via a 'C' program running on the RasPi. I had planned on adding an FPGA to offload the RasPi, but so far I have not seen a need

Re: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-04-15 Thread Charles MacDonald
On 17-04-15 02:55 AM, Nick wrote: You could always use a genuine real-time o/s like ChibiOS/RT .. At one time their was a group working on a real time linux kernel... https://www.linux.com/blog/intro-real-time-linux-embedded-developers https://wiki.archlinux.org/index.php/Realtime_kernel

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-04-15 Thread blave
This is how I did it. https://www.youtube.com/watch?v=9kbrIwxNr9g have fun, Dave B. -- You received this message because you are subscribed to the Google Groups "neonixie-l" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-04-15 Thread Nick
You could always use a genuine real-time o/s like ChibiOS/RT .. Nick -- You received this message because you are subscribed to the Google Groups "neonixie-l" group. To unsubscribe from this group and stop receiving emails from it, send an email to neonixie-l+unsubscr...@googlegroups.com. To

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-04-14 Thread gregebert
I ran a few more tests on serializing a 64-bit stream using C-language and the wiringPi library. Typically, I'm getting around 32usec (measured on a scope) to send the 64-bit burst, which is decent for software-controlled GPIO's. There are timers available in wiringPi, but I found they are not

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-04-09 Thread gregebert
I have an FPGA as my 'Plan B', in case the there isn't enough predictability in the Pi to display time down to the second. It wouldn't be much work to modify the Verilog code I did for my previous clock to allow the Pi to handle daylight savings, insert text messages, and possibly correct for

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-04-08 Thread GastonP
On Saturday, April 8, 2017 at 4:02:13 AM UTC-3, gregebert wrote: > > UPDATE: I have my RasPi Zero W running nicely as a headless system w/ > Raspian. > > I'm satisfied to the point I wont pursue Arduino anymore. > Having a $10 Linux-based platform that I can log into wirelessly & > remotely is

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-04-08 Thread gregebert
I'm just using C, and so far I have not chosen a development tool. The info I found on sparkfun mentions Geany (and it's included in the current raspian image), so I will try that first. There are sample programs included in the wiringPi distro for I2C and SPI. Have not tried either yet, but

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-31 Thread 'Dave' via neonixie-l
These work great. If anyone wants to try one, I have some extra PCBs I can sell. On Thursday, March 30, 2017 at 6:10:07 AM UTC-4, okniew wrote: > > I also found 1 more place having exactly what I was looking for, although > at a rather steep price.. > >

Re: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-30 Thread Dylan Distasio
Although it will not address the +, you may want to look at these. I have not used these personally but on paper I think they may be close to what you want: http://cathodecreations.com/index.php?route=product/product=59_61_id=53 On Mar 30, 2017 6:10 AM, "okniew"

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-30 Thread okniew
I also found 1 more place having exactly what I was looking for, although at a rather steep price.. https://switchmodedesign.com/collections/arduino-shields/products/smart-nixie-tube Have you ever had any experiences with those kits? W dniu poniedziałek, 20 marca 2017 10:42:24 UTC+1 użytkownik

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-30 Thread okniew
It took me some time to answer, been quite busy with my work. Still, thanks a lot for all your answers! @Nick - nice suggestions, thanks for sharing the links. @Alic - yes, it has to RPI, main reason for this is - I already bought it :) @Tomasz Kowalczyk - thank you for all the information,

Re: [neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-20 Thread 'Ian Vine' via neonixie-l
Not sure if we are getting wires crossed. The $102 price was for the Rpi hat to arduino shield adapter IanV On Monday, 20 March 2017, 17:01, Tomasz Kowalczyk wrote: Yeah, but this is costly due to custom transformer used. I'd prefer a 12V supply and cheap NE555

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-20 Thread gregebert
I chose the RasPi zero-W (the newest Pi, for $10 US) because it has built-in WiFi to do periodic time-sync, and it will allow me to update my clock software remotely, rather than taking the clock apart each time to update FPGA code. My concern is the limited GPIO speed of the Pi, so I will

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-20 Thread Tomasz Kowalczyk
Yeah, but this is costly due to custom transformer used. I'd prefer a 12V supply and cheap NE555 converter or 5V + voltage doublers, as this is just cheaper than those 'ready to use' modules from ebay. On USB you are heavily limited with current anyway, so the clock has to be multiplexed or

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-20 Thread Alic
The eBay seller vfdclock also sells many different 5V to 170V or higher supplies (his eBay store is closed for a few days right now) : http://www.ebay.com/itm/131846790948?_trksid=p2060353.m1438.l2649=STRK%3AMEBIDX%3AIT http://www.ebay.com/sch/vfdclock/m.html?_nkw=&_armrs=1&_ipg=&_from= --

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-20 Thread Alic
Tomasz, Tayloredge offers a HV power supply which gives up to 23mA @ 180V for a 5V input : http://www.tayloredge.com -- You received this message because you are subscribed to the Google Groups "neonixie-l" group. To unsubscribe from this group and stop receiving emails from it, send an email

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-20 Thread Nick
I wonder just wondering, if anyone has made a RPi hat that adapts to an Arduino header so that you could use an RPi with any (well, most) Arduino shield as there are 1000's of Arduino shields and only a few 100 (maybe) RPi hats... Just a thought... RATS! Someone else thought of it first -

[neonixie-l] Re: Raspberry PI controlled Nixie display

2017-03-20 Thread Tomasz Kowalczyk
Unfortunately there aren't any original IN-14 sockets. But there are good news: you can easily buy IN-14 to 2,54mm adapter from OSH park. I don't know if there is any existing project like this, but for me it is really short work and I could make gerber files for such PCB*. OSH makes three