Go to advanced search

by karrika
Wed Oct 12, 2016 7:45 am
Forum: Other projects
Topic: Project Ideas for a Bachelor Project
Replies: 4
Views: 1169

Re: Project Ideas for a Bachelor Project

If you feel that writing a board game would be fun then do it. There is all kind of competitions for writing a game in 7 days like 7DRL or https://pyweek.org/ . You could have a look at the source codes of games other have written. If you keep to the same level of difficulty as these games written i...
by karrika
Tue Oct 11, 2016 5:44 am
Forum: Troubleshooting
Topic: Multiple Devices to MOSI?
Replies: 9
Views: 3039

Re: Multiple Devices to MOSI?

If you don't want to connect two devices to the same SPI bus there is also a second SPI bus available. http://pinout.xyz/pinout/spi And I know that you can connect many devices to the SPI bus. My Atari Lynx cart programmer has two chips connected to one SPI bus. Works like a dream. But you need to d...
by karrika
Mon Oct 10, 2016 10:27 am
Forum: Teaching and learning resources
Topic: Just to teach my kids programming the old way
Replies: 11
Views: 5819

Re: Just to teach my kids programming the old way

The charm with Basic was that compiler was built-in to the language. You could run 20 PRINT "Hello World!" It is not so far from Python. It also has a built in compiler in the language. print "Hello World!" In reality Python is the modern Basic. The only thing that may be confusing is that the inden...
by karrika
Fri Oct 07, 2016 7:42 am
Forum: Interfacing (DSI, CSI, I2C, etc.)
Topic: Second SIO/UART
Replies: 11
Views: 18553

Re: Second SIO/UART

Have a Look over the kickstater project i hope it may solve your problem. https://www.kickstarter.com/projects/1915118535/uart-hat-for-raspberry-pi According to the comments section from January. @Erki - Shipping? Not likely. According to an earlier message, this company has been dissolved. They ha...
by karrika
Thu Oct 06, 2016 12:04 pm
Forum: Compute Module
Topic: Raspberry Pi and Stereo Sound
Replies: 5
Views: 1496

Re: Raspberry Pi and Stereo Sound

There is also a nice player called omxplayer. omxplayer -o local --loop sound.mp3 The keyword "local" directs the sound to the GPIO pins you have chosen for audio instead of HDMI. You may want to create a dt blob with the correct audio pin settings. I have an example at discohat.com/miscap. /* Audio...
by karrika
Thu Oct 06, 2016 11:52 am
Forum: Gaming
Topic: Raspberry Pi Zero Gaming Rig
Replies: 5
Views: 1625

Re: Raspberry Pi Zero Gaming Rig

There is actually one technique for creating a gaming rig with multiple PiZero's. For Atari Lynx there exists something called ComLynx for connecting up to N Lynxes together for multiplayer games. Many carts support 4 players. Championship Rally, Xenophobe, Checkered flag, Slime world, California Ga...
by karrika
Thu Oct 06, 2016 11:30 am
Forum: Off topic discussion
Topic: Another Pixel
Replies: 3
Views: 1094

Re: Another Pixel

CarlRJ wrote:I still maintain that the recently announced software for the Raspberry Pi is named after my cat, Pixel.
The attachment Pixel.jpg is no longer available
We should really make a wallpaper of Pixel to replace my current one.
pussinboots.jpg
pussinboots.jpg (26.01 KiB) Viewed 813 times
by karrika
Thu Oct 06, 2016 10:06 am
Forum: General discussion
Topic: eInk display
Replies: 4
Views: 1398

Re: eInk display

Sounds interesting.

The connection is using the UART. So this "display" does not show the Raspberry Pi screen at all.

You can send bytes to the eInk display to draw your own drawings. The commands understood by the eInk display was not explained in the ad.
by karrika
Thu Oct 06, 2016 9:11 am
Forum: Graphics, sound and multimedia
Topic: Creating moving pictures on the wall
Replies: 2
Views: 729

Re: Creating moving pictures on the wall

If the room is dark you could just use a LED based projector. It works for retro gaming but not so well for movies due to low pixel count (800 x 480 pixels). It also has HDMI input which means that it works directly with Raspberry Pi. And no expensive bulbs to wear out :) Here I am playing Zaku on a...
by karrika
Wed Oct 05, 2016 10:39 am
Forum: Beginners
Topic: if - then in script
Replies: 14
Views: 2454

Re: if - then in script

No problem. Assigning a date to startdate: startdate=`date -d 2016-10-10` Assigning dates for comparison: start01=`date -d 2016-10-24 +"%Y%m%d"` start02=`date -d 2016-11-15 +"%Y%m%d"` Comparing two integers if (($start02 > $start01)); then echo yes else echo no fi The OR operation is || and the AND ...
by karrika
Wed Oct 05, 2016 7:19 am
Forum: Beginners
Topic: if - then in script
Replies: 14
Views: 2454

Re: if - then in script

You could install the command "at". sudo apt-get install at With the at-command you can start something at a specific time. at -f script1.sh -t YYMMDDhhmm To see which jobs you have in your queue. atq To remove jobs from the queue atrm jobnr In your script file you may (or may not) want to use lock ...
by karrika
Wed Oct 05, 2016 7:06 am
Forum: Graphics, sound and multimedia
Topic: (Yet another) Vintage Pi-Radio
Replies: 109
Views: 22234

Re: (Yet another) Vintage Pi-Radio

I haven't tried USB audio but have been tempted as there is some static on the speaker. Don't know if that's the amp or the pi. Also curious as to whether this would make any difference. Last summer the natural Pi audio through the 3.5mm plug was much better than before. We used it for all sound at...
by karrika
Wed Oct 05, 2016 3:47 am
Forum: Automation, sensing and robotics
Topic: 433 Mhz trouble
Replies: 4
Views: 1123

Re: 433 Mhz trouble

Da9L wrote:Nope unfortunately not, I've tried to move it so close that it is touching the unit, and i've also attached an antenna.
17.3mm antenna wire? It makes a difference to have it the right length.
by karrika
Tue Oct 04, 2016 5:56 am
Forum: Graphics, sound and multimedia
Topic: (Yet another) Vintage Pi-Radio
Replies: 109
Views: 22234

Re: (Yet another) Vintage Pi-Radio

Thank you for publishing the code. I found out that squeezelite is no longer found at googlecode. Could the binary be hosted at PiRadio? (I did find a file with the same name at https://github.com/Hypfer/squeezelite-downloads/blob/master/squeezelite-armv6hf ) I have used squeezeplayer on my android ...
by karrika
Sun Oct 02, 2016 10:53 am
Forum: Interfacing (DSI, CSI, I2C, etc.)
Topic: Faster serial
Replies: 10
Views: 2384

Re: Faster serial

ghans wrote: BTW , can't the Pis UART be overclocked ?
ghans
At DMX use the UART works nicely at 250kpbs using RS485 drivers. The cables can be really long at these speeds.

I believe that the hard limit is around 4Mbps. At these speeds you may need to pay attention to the electronics transmission line also.
by karrika
Sat Oct 01, 2016 3:57 pm
Forum: General discussion
Topic: Car Autopilot ala Aircraft
Replies: 28
Views: 5753

Re: Car Autopilot ala Aircraft

We are going to see autonomous trains, cars, airplanes, ships real soon. Fortunately there is laws of how you need to design software for this kind of projects. In a nutshell you need to evaluate the risk of different components like breaks or steering. Depending on what may go wrong you estimate fr...
by karrika
Fri Sep 30, 2016 7:23 pm
Forum: General discussion
Topic: Anyone notice that Pixel v51 Chromium browser is snafu'd?
Replies: 27
Views: 9383

Re: Anyone notice that Pixel v51 Chromium browser is snafu'd

The Chromium browser works well as long as you don't try to watch the youtube videos in full-screen. On a Pi3 I did listen to all kind of videos for a long time and there was no stuttering in sound or video. It is definitely a great step forward.
by karrika
Fri Sep 30, 2016 5:32 pm
Forum: Interfacing (DSI, CSI, I2C, etc.)
Topic: Faster serial
Replies: 10
Views: 2384

Re: Faster serial

we do have strict security to separate our office network from the Internet. All access to the internet etc, must be via separate laptops which are never connected to the work LAN. The idea behind this is that nothing from the outside should get to the restricted LAN. Running any serial communicati...
by karrika
Fri Sep 30, 2016 5:34 am
Forum: Advanced users
Topic: pigpio to sample 25ms at 1MHz?
Replies: 15
Views: 2973

Re: pigpio to sample 25ms at 1MHz?

Thank you for the links. These prices are amazing. I can afford to invest €7 in proper analyser hardware. It may be worth to build a dedicated DMX analyser with the official 7" touch screen, a DiscoHAT for transmissions and the analyser for detecting what comes back. I also believe that all fixtures...
by karrika
Wed Sep 28, 2016 7:11 pm
Forum: Raspberry Pi OS
Topic: STICKY: PIXEL desktop: now defunct and replaced by Raspbian Stretch
Replies: 193
Views: 167388

Re: Introducing PIXEL desktop: new Raspbian release

"Chromium for the Pi. This uses the Pi’s hardware to accelerate playback of streaming video content." I just upgraded my Pi 3. Is there some special "enable acceleration" commands required? I can watch the video https://www.youtube.com/watch?v=vOiUfSd3ohs smoothly on the web page. But when I go ful...
by karrika
Wed Sep 28, 2016 5:09 pm
Forum: Raspberry Pi OS
Topic: STICKY: PIXEL desktop: now defunct and replaced by Raspbian Stretch
Replies: 193
Views: 167388

Re: Introducing PIXEL desktop: new Raspbian release

"Chromium for the Pi. This uses the Pi’s hardware to accelerate playback of streaming video content." I just upgraded my Pi 3. Is there some special "enable acceleration" commands required? I can watch the video https://www.youtube.com/watch?v=vOiUfSd3ohs smoothly on the web page. But when I go full...
by karrika
Wed Sep 28, 2016 12:40 pm
Forum: Advanced users
Topic: pigpio to sample 25ms at 1MHz?
Replies: 15
Views: 2973

Re: pigpio to sample 25ms at 1MHz?

Thanks Matt, your approach sounds great. It is just that I bought an Audio Injector card made by flatmax (sounds familiar...) that may already occupy the bus. It is no problem. I put in a second Pi for measuring the line. Of course I could export the clock from the sending Pi to time the operations ...
by karrika
Wed Sep 28, 2016 12:07 pm
Forum: Advanced users
Topic: pigpio to sample 25ms at 1MHz?
Replies: 15
Views: 2973

Re: pigpio to sample 25ms at 1MHz?

PiGraham wrote:Bitscope may be viable. Claim 10MH BW and 40 MS/s. Pi compatible USB device.
http://bitscope.com/
Thank you for the link. I will try this out. It sounds like a good design.
by karrika
Wed Sep 28, 2016 11:27 am
Forum: Advanced users
Topic: pigpio to sample 25ms at 1MHz?
Replies: 15
Views: 2973

Re: pigpio to sample 25ms at 1MHz?

Thank you for all the great ideas. Both the serial chip and using pigpio directly sounds great. The DMX standard has really large tolerance for operations. The start signal is from 88us to 1000000us. Any gap between two channels can also be anything between 8us and 1000000us. In real life you cannot...
by karrika
Wed Sep 28, 2016 11:05 am
Forum: Advanced users
Topic: pigpio to sample 25ms at 1MHz?
Replies: 15
Views: 2973

Re: pigpio to sample 25ms at 1MHz?

Going off on a tangent, if you need high sampling rate, big buffer and programmability to make an analyser it might be worth looking at red pitaya (200MHz input bandwidth, dual 16bit ADCs & DACs, 2.5 GS/s, Arm core, FPGA, fast RAM buffer, USB host and gadget support). It is more expensive than a Pi...

Go to advanced search