
Hassanul
Members-
Content Count
9 -
Joined
-
Last visited
About Hassanul
-
Rank
Noob Class
Profile Information
-
Gender
Male
-
Interests
TI LaunchPad, Arduino, DIY Electronics ,3D Printing
-
Try changing COM ports. Go to device manager . Here's a guide for it. http://plugable.com/2011/07/04/how-to-change-the-com-port-for-a-usb-serial-adapter-on-windows-7 Although its for windows 7, it should be the same steps for windows 8.1
-
I am also experimenting with water level sensing right now... I'm making an aquaponics system that requires monitoring of water levels but I used a SRF05 Ultrasonic sensor placed on the top to detect the water level. I'm gonna try CapTouch someday.. It has a library for it right?
-
Yeah I got an email about that... Can't wait to get my hands on it!! Anyway I just found out that my board isn't fried, although at one time I accidentally splashed some water onto the eZ-FET while it was connected to the computer
-
I didn't know that the wolverine has a 12-bit ADC. I just read the specifications and indeed you're right - its 12-bit. Now I got it to work perfectly.. Thanks!!
-
I'm working on an launchpad-controlled/monitored aquaponics system (Hydroponics + Aquaculture)
-
Hello, I have the MSP-EXP430FR5969 Wolverine Launchpad (Rev 1.6) and I'm trying to read the voltage output of a LM35 temperature sensor. I went on and used adafruit's code and adapted it to the launchpad. However, I'm not getting the correct voltage values. I verified the sensor is working as I used a multimeter to measure the voltage and it is working. Here's a snippet of the code static uint8_t analogInPin = A7 ; int sensorValue = 0; int voltage = 0; int temp = 0; . . . . . sensorValue = analogRead(analogInPin); voltage=sensorValue*(3600/1023.0); temp=(volt
-
Thanks @@chicken I uploaded the code, installed the library but nothing appeared on my screen. After reading the wiki I got it to work. Thanks alot for your help[emoji106][emoji106] Sent from my GT-N7105 using Tapatalk
-
@@chicken Inside the Graphics Library, there is an application 'image-reformer' . Its at \utils\image-reformer . It can convert a jpeg image to a .c file which can be used in CCS. Here is a code of the TI logo I generated using that application Thanks for your help. You guys are awesome! #include "grlib.h" static const unsigned char pixel_ti_logo11BPP_UNCOMP[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
-
I have a MSP430FR5969 launchpad with the Sharp 96x96 LCD boosterpack. The out of the box application had a splash screen. I am aware that using CCS with the library, I could display .c images using the MSP430 image reformer that is included with the graphics library but I'm not really good at coding in C. I came from the Arduino, so I'm more familiar with the energia. Is there any way to display these .c image files on energia?