For this project we will be doing all the communications over serial between the Arduino and the C# program.
We will be confroming to the "AT Commands" or Hayes
In short all serial commands sent to Arduino will be prefeced with
AT+
For this project we will be doing all the communications over serial between the Arduino and the C# program.
We will be confroming to the "AT Commands" or Hayes
In short all serial commands sent to Arduino will be prefeced with
AT+
#!/bin/bash | |
WORKSPACE=/var/www/html/ | |
echo "Post-receive" | |
git --work-tree=$WORKSPACE checkout -f | |
cd $WORKSPACE | |
#!/bin/bash | |
source ~/.bash_profile | |
VERSION=$(date +%Y%m%d%H%M%S) | |
BASE_DIRECTORY=/var/www/virtual/foxyzor/html/application | |
SOURCE_ROOT=$BASE_DIRECTORY/versions/$VERSION | |
SHARED_FOLDER=$BASE_DIRECTORY/shared | |
STORAGE_FOLDER=$BASE_DIRECTORY/shared/storage | |
CURRENT_LINK=$BASE_DIRECTORY/current |
#!/bin/sh | |
# Author : Jeroen Herczeg <[email protected]> HASSELT, LIMBURG, BELGIUM, EUROPE, EARTH | |
# | |
# Hello. My name is Jeroen Herczeg and I can help you or your team with my broad knowledge | |
# of frontend & backend web technologies and tools. I'm an eager learner and easily adapt to | |
# new environments. Work remotely? I like that. Need me on location? I'm sure we'll figure something out! | |
# | |
# http://herczeg.be | |
# Stop the script if there is an error |
#Insall Ajenti | |
apt-get update | |
wget http://repo.ajenti.org/debian/key -O- | apt-key add - | |
echo "deb http://repo.ajenti.org/ng/debian main main ubuntu" >> /etc/apt/sources.list | |
apt-get update | |
apt-get install ajenti | |
service ajenti restart | |
# Uninstall Apache2 | |
sudo apt-get autoremove && sudo apt-get remove apache2* |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |