This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Stellaris / Tiva C - GY-GPS6MV1 - GPS Ublox NEO 6M | |
// Use Energia IDE from http://energia.nu | |
//Wires | |
// GY-GPS6MV1 | Tiva | |
// VCC ---------- VBUS | |
// TX ---------- PB0 | |
// RX ---------- PB1 | |
// GND ---------- GND |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Win32; | |
using System; | |
using System.Diagnostics; | |
using System.IO; | |
using System.IO.Ports; | |
using System.Runtime.InteropServices; | |
namespace WindowsTapSpace |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Stellaris / Tiva C - Testing all USARTs | |
void setup() | |
{ | |
pinMode(40,1); | |
Serial.begin(115200); | |
Serial1.begin(115200); | |
Serial1.setPins(UART1_PORTB); //trick to active USART1 without overlap USART4 | |
Serial2.begin(115200); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// from https://github.com/DigiExam/simplewifi | |
using SimpleWifi; | |
// Wifi object | |
Wifi wifi = new Wifi(); | |
// get list of access points | |
IEnumerable<AccessPoint> accessPoints = wifi.GetAccessPoints(); | |
NewerOlder