Skip to content

Instantly share code, notes, and snippets.

View olafloogman's full-sized avatar

Olaf Loogman olafloogman

  • Sydney, NSW, Australia
View GitHub Profile
@olafloogman
olafloogman / sendeventhub.py
Last active July 16, 2020 09:58
sendeventhub
#!/user/bin/python
import sys
import azure
import socket
from azure.servicebus import (
_service_bus_error_handler
)
from azure.servicebus.servicebusservice import (
@olafloogman
olafloogman / main.cpp
Created November 29, 2014 05:31
WindowsIoT_TemperatureToStorageQueue
// Main.cpp : Defines the entry point for the console application.
#include "stdafx.h"
#include "arduino.h"
#include "was/storage_account.h"
#include "was/queue.h"
#include <cpprest/http_client.h>
#include <cpprest/filestream.h>
@olafloogman
olafloogman / main.cpp
Created November 29, 2014 05:25
WindowsIoT_BasicTemplate
// Main.cpp : Defines the entry point for the console application.
#include "stdafx.h"
#include "arduino.h"
int _tmain(int argc, _TCHAR* argv[])
{
return RunArduinoSketch();
}