Linux - Introduction

Linux – Vim

Vim is a text editor that is included with Ubuntu that allows you to modify configuration files. http://manpages.ubuntu.com/manpages/xenial/man1/vim.1.html To Create a Text File Simply type vim filename Capitalization matters. test.txt, Test.txt, and TEST.TXT are different […]

Linux - Introduction

Linux – Is Linux Open Source?

Everyone knows that Linux is “Open Source”! But what does that really mean? Open Source means different things to different people, and more importantly there are different licenses that are covered under the Open Source […]

Linux - Introduction

Linux – Best Distribution

Finding the best distribution of Linux for your personal use and for your organization is important. As with much in the tech world you should be thinking more about what questions to answer rather than […]

Linux - Introduction

Linux – Introduction

Understanding Linux is a must in the modern world as a technology professional. Whether you’re building IoT projects, or simply managing websites Linux will many times be your go to operating system of choice. What […]

Arduino

Arduino – Servo Motors

Servo Motors are able to be set to a specific position. This may be useful for steering vehicles, opening vents, or creating visual notification systems. Note: Cheap servo motors may require that you tweak the […]

Arduino

Arduino Uno WiFI Turn LED On and Off

This project shows you how to turn an LED on and off through a web browser. Functional Parts in the Project: Arduino WiFi Rev 2 – https://store.arduino.cc/usa/arduino-uno-wifi-rev2 Analog Temperature Sensor – https://amzn.to/2Rkkl3k Breadboard Kit – https://amzn.to/2Xih5ei 560 Piece […]

Arduino

Arduino WiFi Temperature Web Page Alert

This project displays the temperature on a web page that auto refreshes. The color of the temperature readout changes based on the temperature. Functional Parts in the Project: Arduino WiFi Rev 2 – https://store.arduino.cc/usa/arduino-uno-wifi-rev2 Analog Temperature […]

Arduino

L298N Controlling 12V Fans with Arduino

Using an Arduino and L298N Motor Module you can control 12 volt fans, or other electric motors to mitigate environmental issues.   Functional Parts in the Project: Arduino Uno – https://store.arduino.cc/usa/arduino-uno-rev3 L298N Motor Module – https://amzn.to/2Xa9uiR […]

Arduino

16 x 2 LCD and Analog Temp Sensor on Arduino

This project uses a 16 x 2 LCD Display to show the temperature in Fahrenheit and Celsius using an analog temperature sensor. Functional Parts in the Project: Arduino Uno – https://store.arduino.cc/usa/arduino-uno-rev3 LCD Screen – https://www.adafruit.com/product/1447 Analog Temperature […]

Arduino

16 x 2 LCD Screen on Arduino

LCD Screens allow an Arduino to display specific text such s an IP address or the Temperature. Functional Parts in the Project: Arduino Uno – https://store.arduino.cc/usa/arduino-uno-rev3 LCD Screen – https://www.adafruit.com/product/1447 Potentiometer (50K) – https://amzn.to/2N1NH8h 220 Ohm […]

Arduino

IR Sensor Analog Output on Arduino

You can use Analog Pins on your Arduino Board to read from an IR sensor if you need a numeric reading. Functional Parts in the Project: Arduino Uno – https://store.arduino.cc/usa/arduino-uno-rev3 IR Sensor – https://amzn.to/2IDw7SE

Arduino

Analog Temperature Sensor LED Alert on Arduino

This project allows you to use LED’s as a way to display temperature information. Functional Parts in the Project: Arduino Uno – https://store.arduino.cc/usa/arduino-uno-rev3 HC-SR204 Ultrasonic Sensor – https://amzn.to/31AGgYC Breadboard Kit – https://amzn.to/2Xih5ei Analog Temperature Sensor – https://amzn.to/2Rkkl3k 220 Ohm […]

Arduino

Analog Temperature Sensor with Arduino

You can use Analog Temperature Sensors in Arduino Projects to determine the temperature in your environment. Functional Parts in the Project: Arduino Uno – https://store.arduino.cc/usa/arduino-uno-rev3 Breadboard Kit – https://amzn.to/2Xih5ei Analog Temperature Sensor – https://amzn.to/2Rkkl3k

Arduino

HC-SR04 Ultrasonic Distance Sensor with Arduino

HC-SR04 Ultrasonic Distance Sensors allow you to take relatively accurate distance readings for your Arduino project. Functional Parts in the Project: Arduino Uno – https://store.arduino.cc/usa/arduino-uno-rev3 HC-SR204 Ultrasonic Sensor – https://amzn.to/31AGgYC Breadboard Kit – https://amzn.to/2Xih5ei

Arduino

Arduino IR Obstacle Avoidance Vehicle

This project will allow you to create a basic autonomous obstacle avoidance vehicle with Arduino. Functional Parts in the Project: FeeTech FT-MC-002-SMC – https://amzn.to/2MLIzoF FeeTech 2CH-SM-Controller (Motor Controller) Arduino Uno – https://store.arduino.cc/usa/arduino-uno-rev3 IR Sensor – https://amzn.to/2IDw7SE […]

Arduino - Basics

Arduino Clone Boards

Arduino is an open source hardware project which means anyone can build and sell boards based off of the Arduino design. This is good because other manufacturers can sell boards for a fraction of the […]

Arduino - Basics

Types of Arduino Boards

There are numerous type of Arduino Boards. You basically code for them the same way, but different boards offer different options such as more Digital Connections, or WiFi.

PHP Programming (NEW)

PHP – Creating Arrays

Arrays allow for a variable to have multiple values.  This gives you the ability to create lists of names, and be able to sort them easily.  Also it allows you to have values from a […]

PHP Programming (NEW)

PHP – if Statements

If Statements allow you to trigger code if specific conditions are met.   <?php $age = 20; print “Your Age is $age”; print “<br>”; if ($age < 18) { print “you too YOUNG”; } ?>

PHP Programming (NEW)

PHP – Comments

Commenting code allows you to add notations to you script to explain why it was written how it was. You can also use commenting to keep specific code from running during troubleshooting.   <?php /* […]

PHP Programming (NEW)

PHP – Setting Variables

Variables in PHP can be set without needing to be declared.   <?php $string = “Hello World”; $int = 1; $float = 2.2; print “<h1>String</h1>”; print $string; print “<h1>Int</h1>”; print $int; print “<h1>Float</h1>”; print $float; […]