Search found 58 matches

by ardiri
08:58, 16 Oct 2014
Forum: Questions and answers
Topic: can't connect between workbench & client
Replies: 13
Views: 61869

Re: can't connect between workbench & client

are you possibly on a network that has client isolation? client isolation means that each client on the network is effectively on its own - and is unable to communicate to other devices on the network. this is common for public hotspots or corporate network environments. since the client must commun...
by ardiri
02:45, 09 Oct 2014
Forum: Questions and answers
Topic: Evothings on arduino cc3000 wifi board
Replies: 4
Views: 23984

Re: Evothings on arduino cc3000 wifi board

you will need to port the WiFi code to the Adafruit CC3000 library https://github.com/adafruit/Adafruit_CC3000_Library unfortunately; due to the nature of Arduino shields and their designs not all libraries are 100% compatible with each other. we have seen the same pattern with Bluetooth Low Energy ...
by ardiri
01:55, 08 Oct 2014
Forum: Questions and answers
Topic: Reading Characteristic Data
Replies: 4
Views: 27250

Re: Reading Characteristic Data

you may want to take a look at these pages: https://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicsHome.aspx http://www.spinics.net/lists/linux-bluetooth/msg31603.html https://github.com/grundid/bletools/blob/master/src/main/java/de/grundid/ble/gatt/GattDb.java { "00002a24-00...
by ardiri
15:32, 27 Sep 2014
Forum: Texas Instruments
Topic: TI SensorTag As An iBeacon
Replies: 1
Views: 14585

Re: TI SensorTag As An iBeacon

we actually had to go through the same process to convert the TI Sensor tag into an iBeacon - it does add a layer of complexity. i believe it comes down to a license agreement (or, lack of it) between TI and Apple. there are other vendors of Arduino based devices that also allow the use of the BLE d...
by ardiri
09:37, 09 Sep 2014
Forum: Questions and answers
Topic: How to assign service UUID and how to retrieve it
Replies: 6
Views: 38001

Re: How to assign service UUID and how to retrieve it

also many thanks Ardiri, yes you are right, I have contacted Chris Paulson who is behind the RFduino project etc and he has mentioned the UUID's that work with the RFduino are as follows. UUIDs - 2220 - Base Service UUID 2221 - Receive UUID 2222 - Send UUID 2223 - Disconnect UUID And as you can gue...
by ardiri
21:39, 08 Sep 2014
Forum: Questions and answers
Topic: How to assign service UUID and how to retrieve it
Replies: 6
Views: 38001

Re: How to assign service UUID and how to retrieve it

no, you have mis-understood. when: 12340000-cbed-76db-9423-74ce6ab53dee is the UUID of the service, then - then the characteristics are: 12340001-cbed-76db-9423-74ce6ab53dee - write 12340002-cbed-76db-9423-74ce6ab53dee - read the +1 and +2 happen on the first DWORD of the UUID. for the RFDuino you c...
by ardiri
13:42, 08 Sep 2014
Forum: Questions and answers
Topic: How to assign service UUID and how to retrieve it
Replies: 6
Views: 38001

Re: How to assign service UUID and how to retrieve it

it would be great if you could use the code tags - makes your post easier to read. for the RFduino - you can set a custom UUID; thats easy, here is an example for the rfduino side of things - you also detect the device using the deviceName - which you can also set as well. // configure the device an...
by ardiri
15:37, 07 Jul 2014
Forum: Questions and answers
Topic: Retrieve Evothings Connection URL automatically
Replies: 1
Views: 13234

Re: Retrieve Evothings Connection URL automatically

Code: Select all

<p>
Connection URL is [<script>document.write(window.location)</script>]
</p>


just include that within your HTML code.
if you want to get just the hostname and port, change variable window.location.hostname and windows.location.port.

// Aaron

Go to advanced search