<?xml-stylesheet type="text/xsl" href="https://community.element14.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Knight Rider</title><link>/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><description>This is my build thread of turning my 1999 Honda Prelude into an emulation of KITT (Knight Industries Two Thousand) from the TV series &amp;quot;Knight Rider&amp;quot;. There is going to be a lot of buttons, switches and various indicator lights. I&amp;#39;ll add a small scre</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Thu, 27 Aug 2015 22:52:40 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;This is the code for the Raspberry Pi that I used.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;import os&lt;br /&gt; import time&lt;br /&gt; from time import sleep&lt;br /&gt; &lt;br /&gt; import RPi.GPIO as GPIO&lt;br /&gt; &lt;br /&gt; GPIO.setmode(GPIO.BCM)&lt;br /&gt; GPIO.setwarnings(False)&lt;br /&gt; GPIO.setup(23, GPIO.IN, GPIO.PUD_UP)&lt;br /&gt; GPIO.setup(17, GPIO.OUT)&lt;br /&gt; GPIO.setup(18, GPIO.IN, GPIO.PUD_UP)&lt;br /&gt; GPIO.setup(22, GPIO.IN, GPIO.PUD_UP)&lt;br /&gt; GPIO.setup(27, GPIO.OUT)&lt;br /&gt; GPIO.setup(24, GPIO.IN, GPIO.PUD_UP)&lt;br /&gt; GPIO.setup(25, GPIO.OUT)&lt;br /&gt; &lt;br /&gt; scanner = 4&lt;br /&gt; scan_switch = 15&lt;br /&gt; &lt;br /&gt; GPIO.setup(scanner, GPIO.OUT)&lt;br /&gt; GPIO.setup(scan_switch, GPIO.IN, GPIO.PUD_UP)&lt;br /&gt; &lt;br /&gt; while True:&lt;br /&gt; if GPIO.input(scan_switch) == False:&lt;br /&gt; GPIO.output(scanner, 1)&lt;br /&gt; else:&lt;br /&gt; GPIO.output(scanner, 0)&lt;br /&gt; &lt;br /&gt; if (GPIO.input(18) == False):&lt;br /&gt; GPIO.output(17, 1)&lt;br /&gt; os.system(&amp;#39;mpg123 -q allgo.mp3 &amp;amp;&amp;#39;)&lt;br /&gt; print(&amp;quot;All systems go&amp;quot;)&lt;br /&gt; sleep(1)&lt;br /&gt; GPIO.output(17, 0)&lt;br /&gt; &lt;br /&gt; if (GPIO.input(22) == False):&lt;br /&gt; GPIO.output(27, 1)&lt;br /&gt; os.system(&amp;#39;mpg123 -q onway.mp3 &amp;amp;&amp;#39;)&lt;br /&gt; print(&amp;quot;I&amp;#39;m on my way&amp;quot;)&lt;br /&gt; sleep(1)&lt;br /&gt; GPIO.output(27, 0)&lt;br /&gt; &lt;br /&gt; if (GPIO.input(24) == False):&lt;br /&gt; GPIO.output(25, 1)&lt;br /&gt; os.system(&amp;#39;mpg123 -q amuse.mp3 &amp;amp;&amp;#39;)&lt;br /&gt; print(&amp;quot;I&amp;#39;m not amused&amp;quot;)&lt;br /&gt; sleep(1)&lt;br /&gt; GPIO.output(25, 0)&lt;br /&gt; &lt;br /&gt; if (GPIO.input(23) == False):&lt;br /&gt; os.system(&amp;#39;mpg123 -q donttouch.mp3 &amp;amp;&amp;#39;)&lt;br /&gt; print(&amp;quot;Something tells me you shouldn&amp;#39;t touch turbo-boost&amp;quot;)&lt;br /&gt; &lt;br /&gt; sleep(0.1);&lt;br /&gt; &lt;br /&gt; GPIO.cleanup()&lt;br /&gt; &lt;/span&gt;&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Thu, 27 Aug 2015 22:51:22 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;//Arduino Code for the &amp;quot;Anamorphic Equalizer(scanner)&amp;quot;.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;int pinArray[] = {2, 3, 4, 5, 6, 7, 8, 9};&lt;/p&gt;&lt;p&gt;int count = 0;&lt;/p&gt;&lt;p&gt;int timer = 20;&lt;/p&gt;&lt;p&gt;const int button = 10;&lt;/p&gt;&lt;p&gt;int buttonState = 0;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;void setup(){&lt;/p&gt;&lt;p&gt;&amp;nbsp; for (count=0;count&amp;lt;8;count++) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; pinMode(pinArray[count], OUTPUT);&lt;/p&gt;&lt;p&gt;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp; pinMode(button, INPUT);&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;void loop() {&lt;/p&gt;&lt;p&gt;&amp;nbsp; buttonState = digitalRead(button);&lt;/p&gt;&lt;p&gt;&amp;nbsp; if(buttonState == HIGH){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (count=0;count&amp;lt;7;count++) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; digitalWrite(pinArray[count], HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delay(timer);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; digitalWrite(pinArray[count + 1], HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delay(timer);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; digitalWrite(pinArray[count], LOW);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delay(timer*2);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (count=7;count&amp;gt;0;count--) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; digitalWrite(pinArray[count], HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delay(timer);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; digitalWrite(pinArray[count - 1], HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delay(timer);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; digitalWrite(pinArray[count], LOW);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; delay(timer*2);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; else{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; digitalWrite(pinArray[count], LOW);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Thu, 27 Aug 2015 22:50:31 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;//Arduino code for the &amp;quot;Voice Modulator&amp;quot;.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;int VU;&lt;/p&gt;&lt;p&gt;void setup()&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp; Serial.begin(9600); //set baud rate&lt;/p&gt;&lt;p&gt;&amp;nbsp; //set pins attached to LEDs as outputs&lt;/p&gt;&lt;p&gt;&amp;nbsp; pinMode(13, INPUT);&lt;/p&gt;&lt;p&gt;&amp;nbsp; pinMode(3,OUTPUT);&lt;/p&gt;&lt;p&gt;&amp;nbsp; pinMode(4,OUTPUT);&lt;/p&gt;&lt;p&gt;&amp;nbsp; pinMode(5,OUTPUT);&lt;/p&gt;&lt;p&gt;&amp;nbsp; pinMode(6,OUTPUT);&lt;/p&gt;&lt;p&gt;&amp;nbsp; pinMode(7,OUTPUT);&lt;/p&gt;&lt;p&gt;&amp;nbsp; pinMode(8,OUTPUT);&lt;/p&gt;&lt;p&gt;&amp;nbsp; pinMode(9,OUTPUT);&lt;/p&gt;&lt;p&gt;&amp;nbsp; pinMode(10,OUTPUT);&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;void loop()&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp; VU = analogRead(5)*1.35; //set VU as value of pin A5 reading&lt;/p&gt;&lt;p&gt;&amp;nbsp; Serial.println(VU);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; //glow the LEDs depending on the ammount of sound detected by the electret&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; if (VU&amp;gt;1&amp;amp;&amp;amp;VU&amp;lt;=6)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; {//glow first LED&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=10;i++)digitalWrite(i,LOW);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=4;i++)digitalWrite(i,HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; } &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; else if (VU&amp;gt;7&amp;amp;&amp;amp;VU&amp;lt;=10)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {//glow 2nd LED&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=10;i++)digitalWrite(i,LOW);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=5;i++)digitalWrite(i,HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (VU&amp;gt;11&amp;amp;&amp;amp;VU&amp;lt;=14)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {//glow 3rd LED&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=10;i++)digitalWrite(i,LOW);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=6;i++)digitalWrite(i,HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (VU&amp;gt;15&amp;amp;&amp;amp;VU&amp;lt;=18)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {//glow 4th LED&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=10;i++)digitalWrite(i,LOW);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=7;i++)digitalWrite(i,HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (VU&amp;gt;19&amp;amp;&amp;amp;VU&amp;lt;=22)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {//glow 5th LED&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=10;i++)digitalWrite(i,LOW);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=8;i++)digitalWrite(i,HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (VU&amp;gt;23&amp;amp;&amp;amp;VU&amp;lt;=26)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {//glow 6th LED&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=10;i++)digitalWrite(i,LOW);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=4;i&amp;lt;=9;i++)digitalWrite(i,HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if (VU&amp;gt;27&amp;amp;&amp;amp;VU&amp;lt;=30)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {//glow 7th LED&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=3;i&amp;lt;=10;i++)digitalWrite(i,LOW);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(int i=3;i&amp;lt;=9;i++)digitalWrite(i,HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; digitalWrite(3,HIGH);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Thu, 27 Aug 2015 22:49:34 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;span id="c0cb8eff_eaa0_4e9f_b8c8_b04a21761cb1"&gt;&lt;span&gt;[View:https://players.brightcove.net/1362235890001/NkxiVJdjx_default/index.html?videoId=4447846352001:740:466]&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;I finally got KITT &amp;quot;completed&amp;quot;. I didn&amp;#39;t get nearly the functionality I wanted out of it but it works. I&amp;#39;m going to continue this project after the deadline to get it to a better level of completion for myself. The biggest hurdle in this project was the &amp;quot;Voice modulator&amp;quot;. There were a lot of issues in getting both the coding and the circuitry to work properly. It could still use improvement.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Wed, 26 Aug 2015 18:01:42 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;span id="cf0219b3_ddf7_4d53_a23d_1b0a84b8d1c6"&gt;&lt;span&gt;[View:https://players.brightcove.net/1362235890001/NkxiVJdjx_default/index.html?videoId=4445509066001:740:466]&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Some small progress but progress nonetheless. My first GPIO program with a Raspberry Pi for the KITT project working. I took this video a couple of days ago after getting the raspberry pi to switch the &amp;quot;Anamorphic Equalizer&amp;quot; with a rocker switch. I&amp;#39;m currently up to having the programs/buttons for the &amp;quot;Anamorphic Equalizer&amp;quot;, the &amp;quot;All systems go&amp;quot;, the &amp;quot;Oil Slick&amp;quot;, and &amp;quot;Turbo boost&amp;quot;. I&amp;#39;m hoping to have the &amp;quot;Voice Modulator&amp;quot; done by the end of day today.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Sun, 02 Aug 2015 19:01:05 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>1</slash:comments><description>&lt;p&gt;It&amp;#39;s been awhile since I&amp;#39;ve updated and I haven&amp;#39;t made any progress until today. I decided that with just under a month left it was time that I made time to get work done on the project. After reading through KITT&amp;#39;s features on the Wikipedia page (&lt;a class="jive-link-external-small" href="https://en.wikipedia.org/wiki/KITT" rel="nofollow ugc noopener" target="_blank" title="https://en.wikipedia.org/wiki/KITT"&gt;https://en.wikipedia.org/wiki/KITT&lt;/a&gt;) I came up with 9 functions that I would include in my design. Those functions (and the controls/what they do) are listed below&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Turbo Boost&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;Red Arcade button and covered toggle switch&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;Plays “turbo boost” noises&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Anamorphic Equalizer&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;Blue LED Rocker switch&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;Turns on red LED “Scanner” at front of car&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;Plays “scanner” noise&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Oil Jets/Smoke Screen&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;Blue Arcade Button&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;Sprays “oil” from tank&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Emergency Braking System&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;Red LED Rocker switch&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;Plays “brake” sounds&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;All Systems&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;Blue LED Rocker Switch&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;Plays “all systems go” sound clip&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Homing Device&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;Momentary Push Button&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;Plays “I’m on my way” sound clip&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Power&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;Covered toggle switch&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;Turns on Pi and associated systems&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Voice Modulator&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;Red LED rocker switch&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;Turns on LED screen for Visualizer&lt;/span&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;Base rows of green LEDs turn on&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;Pursuit Modes&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;span&gt;Red LED Rocker switch&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;Plays “Super Pursuit mode” sounds.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span&gt;May use multiple switches/buttons to switch between normal/auto/pursuit/super pursuit modes&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Thu, 30 Apr 2015 13:29:03 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I did some digging around yesterday and came upon a project I started a few years ago. &lt;span&gt;[View:/resized-image/__size/1600x900/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-fe2165e1-1bf4-4c46-b00c-32edcae7a235/contentimage_5F00_178862.jpg:1600:900]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;It started life as an old joystick for a windows 95 PC. I bought it as a yard sale for a couple dollars and immediately went to work on disassembling it. I got rid of the base that it mounted to, removed the old wiring and machined an adapter to fit it on to the shifter of my car. I always wanted to use a flight stick as some sort of control in my car and even though it&amp;#39;s not necessarily an item from the real KITT I thought it fit the scope of this project pretty well. Wiring and programming the controls should be fairly easy as all of the buttons (and even the thumb stick) are micro switches pre-mounted on a very basic circuit board.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Wed, 29 Apr 2015 16:55:59 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;After some Google image searching and not coming up with a suitable background to use for KITT&amp;#39;s screen I decided to make my own. I found the highest quality &amp;quot;Knight Industries&amp;quot; logo that I could, re-sized it and colored in the background to make it look like what I thought the monitor in the car should look like. I came up with this: &lt;span&gt;[View:/resized-image/__size/1291x900/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-fe2165e1-1bf4-4c46-b00c-32edcae7a235/contentimage_5F00_178861.jpg:1291:900]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Which will be the permanent background on the Raspberry Pi&amp;#39;s desktop and probably the background on my PC for quite awhile. Simple and clean.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Wed, 29 Apr 2015 13:43:32 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I started doing a little bit of digging into getting audio clips for the voice of KITT and came upon a few good links. &lt;span&gt;&lt;a class="jive-link-external-small" href="http://www.soundboard.com/sb/Knight_Rider_sound_kitt" rel="nofollow" target="_blank"&gt;http://www.soundboard.com/sb/Knight_Rider_sound_kitt&lt;/a&gt;&lt;span&gt;&amp;nbsp; and &lt;/span&gt;&lt;span&gt;&lt;a class="jive-link-external-small" href="http://www.soundboard.com/sb/KnightRider" rel="nofollow" target="_blank"&gt;http://www.soundboard.com/sb/KnightRider&lt;/a&gt;&lt;span&gt;&amp;nbsp; are both great soundboards of KITT. &lt;/span&gt;&lt;span&gt;&lt;a class="jive-link-external-small" href="http://kitt_rider.tripod.com/kittscorner/id7.html" rel="nofollow" target="_blank"&gt;http://kitt_rider.tripod.com/kittscorner/id7.html&lt;/a&gt;&lt;span&gt;&amp;nbsp; contains a lot of good audio clips available as a direct download, this is probably going to be my main source for the audio files for KITT&amp;#39;s voice (what is KITT without that unforgettable voice anyway?). I also found a forum dedicated to fans of the series and people that own KITT-esque vehicles at &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://knightrideronline.com/" rel="nofollow ugc noopener" target="_blank" title="http://knightrideronline.com/"&gt;knight rider online&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;. I got the Arduino keyboard to send data to the serial monitor on my PC though as of right now I&amp;#39;m not sure how to extract that and use it in the Pi. I may just try a different coding implementation using the keyboard library for Arduino and have the Arduino send actual keyboard commands to the Pi instead of raw data that requires decoding.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Tue, 28 Apr 2015 13:02:01 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;span&gt;[View:/resized-image/__size/1600x900/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-fe2165e1-1bf4-4c46-b00c-32edcae7a235/contentimage_5F00_178860.jpg:1600:900]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;I went through the box of parts I received and got out most of the main components I&amp;#39;m going to use from it. I&amp;#39;m planning on using the Pi-2 as the central hub of the system, the Wi-Pi for wireless connections, the Chipkit-Pi to replace some of the Arduino modules and the Pi-Face board with relays on it to control high power draw items (oil slick pumps). I also decided to setup a breadboard/Arduino connection with a couple buttons and a thumb stick (variable Analog inputs) to start building up the control panel for the Pi. My plan for this week is to get the couple buttons and thumb stick working as an input to the Pi just so I have the basics down for getting the communication between the boards working. I&amp;#39;ll add more buttons and switches later on. For now I&amp;#39;m starting small. &lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Fri, 24 Apr 2015 14:31:44 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;&lt;span&gt;[View:/resized-image/__size/1600x900/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-fe2165e1-1bf4-4c46-b00c-32edcae7a235/contentimage_5F00_178859.jpg:1600:900]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;The mailman brought me some presents yesterday.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Thu, 23 Apr 2015 12:27:20 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I did some lay out work for a small section of on of the dash panels. I used this screenshot as a reference for my layout. &lt;span&gt;[View:/resized-image/__size/853x479/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-fe2165e1-1bf4-4c46-b00c-32edcae7a235/contentimage_5F00_178857.jpg:853:479]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;This was from the video Ilinked to in my original post of the KITT replica. My layout looks like &lt;span&gt;[View:/resized-image/__size/596x814/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-fe2165e1-1bf4-4c46-b00c-32edcae7a235/contentimage_5F00_178858.jpg:596:814]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Where the center is what I wanted my visualizer to look like (KITT speaks, the lights flash to his voice). The side squares and bottom rectangles would all be status lights of various systems, though I may replace one of the rectangles with a digital readout that displays when a system has been activated.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Inside of the &amp;quot;Visualizer&amp;quot; the blocks are all marked with D#. These numbers correspond to digital pins on an Arduino which I will use to control this subsystem. I plan on using an audio signal coming from the Raspberry-Pi as an input for this system, which will be analyzed through a Fourier transform to have the audio levels broken down. The LEDs will illuminate based on the level of the audio signal.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Thu, 23 Apr 2015 09:25:28 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>Former Member</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Very cool project. Good luck!&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Thu, 23 Apr 2015 00:41:59 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>scrpn17w</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;I&amp;#39;ll have to look into that . I did it with an arduino because I have all of the components to make one easily already.&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item><item><title>RE: Knight Rider</title><link>https://community.element14.com/challenges-projects/design-challenges/sci-fi-your-pi/b/blog/posts/knight-rider</link><pubDate>Wed, 22 Apr 2015 18:22:14 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe2165e1-1bf4-4c46-b00c-32edcae7a235</guid><dc:creator>ipv1</dc:creator><slash:comments>0</slash:comments><description>&lt;p&gt;Good Job!&lt;/p&gt;&lt;p&gt;You might also wanna google &amp;quot;larson scanner&amp;quot; to cut down costs. I did that for my bicycle when I was a kid &lt;span&gt;[View:/resized-image/__size/16x16/__key/commentfiles/f7d226abd59f475c9d224a79e3f0ec07-fe2165e1-1bf4-4c46-b00c-32edcae7a235/contentimage_5F00_1.png:16:16]&lt;/span&gt;. A 555 and a 4017 can do wonders I tell ya.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;All the best!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Cheers,&lt;/p&gt;&lt;p&gt;IP&lt;/p&gt;&lt;img src="https://community.element14.com/aggbug?PostID=20538&amp;AppID=119&amp;AppType=Weblog&amp;ContentType=0" width="1" height="1"&gt;</description></item></channel></rss>