
MarkV
Members-
Content Count
9 -
Joined
-
Last visited
About MarkV
-
Rank
Noob Class
-
[Energia Library] Capacitive Touch library
MarkV replied to energia's topic in MSP Energia Libraries
With energia16 and launchpad msp430g2 p1 jumpers removed m430g2553 chip the proximity sensor returns too many false positives to be useful on all demo examples. I tried setting the threshhold to 250 and 300 but still have the same problem. Any suggestions? proximity.setThreshold(150); Serial.begin(9600); } void loop() { scanButtons(); scanProximitySensor(); ledSequence(); } void scanProximitySensor() { digitalWrite(MIDDLE_LED, HIGH); while(!proximity.isTouched()); Serial.print("proximity touched: "); Serial.println(proximity.getBaseline()); digitalWrite( -
[Energia Library] RF430CL - TI NFC RF430CL330H library
MarkV replied to spirilis's topic in MSP Energia Libraries
tried the fr430CL330h booster pack on the cc3200 launchpad and it hung on nfc.begin using energia 16. the example code uses the following pins. #define RF430CL330H_BOOSTERPACK_RESET_PIN 8 #define RF430CL330H_BOOSTERPACK_IRQ_PIN 12 Do you have any further instructions on what was done with the jumpers and example code in the above example to make it work. -
energia 14 examples for cc3200 air430bostUSAFCC do not compile
MarkV replied to MarkV's topic in Energia - TivaC/CC3XXX
moved to energia 16 and it compiled, although i was disappointed in the range and reliability (lost connection after a few minutes and only had a range of about 50 feet - with no walls, in my single test) of the anaren rf boards. -
[Energia Library] OneWire DS18B20 (430 & Stellaris)
MarkV replied to OzGrant's topic in MSP Energia Libraries
I tried the StellarisDS18B20 lib and example on a CC3200 launchPad and sometimes it does not find the type 28 device and hangs and the results have frequent 0's and some occational out of range high number. Is there a more accurate/robust lib i should use on the cc3200 launchpad? G'day StellarisOW ROM=11 00 00 00 70 00 00 00 (OW1) Type=11 ROM=28 1C 97 F1 05 00 00 15 (OW2) Type=28 No more addresses. From array 11 00 00 00 70 00 00 00 28 1C 97 F1 05 00 00 15 OW2=F OW2=F OW2=75F OW2=185F OW2=F OW2=75F OW2=F OW2=75F OW2=75F OW2=F -
all the examples for the cc3200 in the air430bostUSAFCC folder do not compile : [/Applications/Energia.app/Contents/Resources/Java/hardware/tools/lm4f/bin/arm-none-eabi-g++, -c, -Os, -w, -fno-rtti, -fno-exceptions, -ffunction-sections, -fdata-sections, -mthumb, -mcpu=cortex-m4, -DF_CPU=80000000L, -MMD, -DARDUINO=101, -DENERGIA=15, -I/Applications/Energia.app/Contents/Resources/Java/hardware/cc3200/cores/cc3200, -I/Applications/Energia.app/Contents/Resources/Java/hardware/cc3200/variants/launchpad, -I/Applications/Energia.app/Contents/Resources/Java/hardware/cc3200/libraries/SPI, -I/Applic
-
I used 2 different methods 1. using UDP to get the time periodically from a time server. There are a few arduino examples that work. But it requires you to know the time zone of your device (great if you have a gps on board). 2. I also created a simple node red flow in a container on the cloud (in my case bluemix) that responds to a mqtt (internet of things foundation) message and sends the current time back to the device. But I am looking for a easy way to get the time for my ip or the RF atomic clock and way to recover the time if the device can not get an internet connection after r
-
CC3200 Issues while trying to connect to a past WiFi profile
MarkV replied to nitred's topic in Energia - MSP
Has there been any progress on being able to connect/reconnect using the profiles stored vi smart config. (from energia) This was why I was evaluating moving to the TI boards. As suggested above wifi.begin that simply uses the profiles without sharing them with me would be fine. Or alternatively I could loop through them. If so do you have some examples of doing this correctly?- 6 replies
-
- wifi
- wlan profile
-
(and 3 more)
Tagged with:
-
When using the on board (cc3200) temperature sensor with the tmp006 energia example, Is there a way to avoid conflicts with other functions using the on board LEDs, specifically the yellow and green LED remain on when using the tmp006 example and I was using them for other functions. Can I disable or move the use of the Green and yellow LED? here is the basic code I am using Adafruit_TMP006 tmp006(0x41); // start with a diferent i2c address! // Grab temperature measurements and print them. float objt = tmp006.readObjTempC(); float fobjt = objt * 1.8 + 32.0; Serial.print("