Wiring an Electric Motor with the mySTEM for NI myDAQ

kristielNI | National Instruments, Tutorial

How to Wire an Electric Motor with mySTEM Project Board for NI myDAQ

We’ve been working on a series of activities that explain how you can enhance the capabilities of the National Instruments myDAQ using the mySTEM Project Board. This week, we’ve got another exciting mySTEM Project Board project to share. This time around, Mark will walk you through how to wire a 12V DC motor to the mySTEM and control it using the … Read More

Share this Post

Detecting Light Levels with the mySTEM for NI myDAQ

kristielNI | National Instruments, Tutorial

Detecting Light Levels With the mySTEM for NI myDAQ

A couple of weeks ago, I did a basic breadboard LED project using a mySTEM connected to a myDAQ. We created a simple circuit. This week, we will create a light detector using the mySTEM Project Board for the NI myDAQ and a couple of sensors/circuits. You’ll have a laser emitter that you’ll use to hit a photoresistor, which will … Read More

Share this Post

Unity Tip: Using Code to Change Material Properties

kristielAll Topics, Coding & Programming, Tutorial

Unity-Tip-How to Change Material Properties in Unity

I am working on a Unity Project in my free time. Recently, I wanted to have the ability to dynamically change the material properties of objects when the player looked at them. I did not want a static, unchanging material. I needed to be able to use C# scripts to make the material change features during gameplay. This is relatively easy to do. However, Unity’s … Read More

Share this Post

How to Create a Custom Input Manager in Unity C#

kristielAll Topics, Coding & Programming, Tutorial, Unity Game Development

How to Create a Custom Input Manager in Unity C#

Recently, I created a custom input manager for a game I’m making in Unity 3D. Initial research suggested I use Unity’s built-in Input Manager. However, Unity doesn’t have an API to access most of the Input Manager functionality. However, I wanted a menu in my game where the user could set their own key bindings; a common feature in most PC games. Unity’s Input … Read More

Share this Post

IBM SPSS Statistics Help: How to Fix Missing Toolbars

kristielAll Topics, Support, Tutorial

IBM SPSS Statistics Help: How to Fix Missing Toolbars

Having trouble with your toolbars in IBM SPSS Statistics? You are not alone. One of the most common issues that our customers experience with IBM SPSS Statistics 23 is that toolbars are missing in their software. For reference, this is how the toolbar should appear in your software when you open up a data set: However, in many cases the software … Read More

Share this Post

How to Create a Singleton in Unity 3D

kristielTutorial, Unity Game Development

How to Create a Singleton in Unity

In game development, you will need to make use of global variables in many instances. Consider common gameplay elements such as player score, currency, health points, or game states such as pause or game over. Beyond these examples you will most likely need to create global variables that are specific to your game. I used Unity 3D for quite a … Read More

Share this Post

How to Create a Raycast in Unity 3D

kristielAll Topics, Tutorial, Unity Game Development

How to Create a Raycast in Unity 3D

What is Raycasting? Raycasting is commonly used in video game development for things such as determining line of sight of the player or the AI, where a projectile will go, creating lasers and more. A raycast is, essentially, a ray that gets sent out from a position in 3D or 2D space and moves in a specific direction. Unity 3D … Read More

Share this Post