This week I fixed minor issues on the website that included grammar and fixing dates. I added a new page for the team introduction and created a GANTT chart for the proposed timeline. I worked on the GUI and now just need to learn how to make the GUI appear when using the Raspberry Pi. I like the idea of having four different colored buttons so the user can visually see what he is pressing while playing the guitar.
![](https://static.wixstatic.com/media/0909bd_da88e493528d491ab60c90f80a069388~mv2.png/v1/fill/w_975,h_655,al_c,q_90,enc_auto/0909bd_da88e493528d491ab60c90f80a069388~mv2.png)
The code that was created is as follows:
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<widget name="__qt_fake_top_level">
<widget class="QFrame" name="frame">
<property name="geometry">
<rect>
<x>9</x>
<y>9</y>
<width>782</width>
<height>528</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(54, 54, 54);</string>
</property>
<property name="frameShape">
<enum>QFrame::StyledPanel</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Raised</enum>
</property>
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
<x>30</x>
<y>70</y>
<width>351</width>
<height>211</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">background-color: rgb(255, 0, 0);font-size:28pt;
border-color: rgb(0, 0, 0);
</string>
</property>
<property name="text">
<string>Distortion</string>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>250</x>
<y>10</y>
<width>321</width>
<height>61</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">color: rgb(222, 222, 222);font-size:28pt;
</string>
</property>
<property name="text">
<string>Sound Modulation</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton_5">
<property name="geometry">
<rect>
<x>390</x>
<y>70</y>
<width>351</width>
<height>211</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">font-size:28pt;
background-color: rgb(255, 255, 0);</string>
</property>
<property name="text">
<string>Delay</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton_6">
<property name="geometry">
<rect>
<x>30</x>
<y>300</y>
<width>351</width>
<height>211</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">font-size:28pt;
background-color: rgb(0, 85, 255);
</string>
</property>
<property name="text">
<string>Reverb</string>
</property>
</widget>
<widget class="QPushButton" name="pushButton_7">
<property name="geometry">
<rect>
<x>390</x>
<y>300</y>
<width>351</width>
<height>211</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">font-size:28pt;
background-color: rgb(0, 170, 0);
</string>
</property>
<property name="text">
<string>Chorus</string>
</property>
</widget>
</widget>
</widget>
<resources/>
</ui>
Comments