Skip to content

Instantly share code, notes, and snippets.

@huggre
huggre / hex_convert.py
Last active March 17, 2020 14:18
Helper for converting an IOTA address to a C++ hex array
# Imports the textrwap library
from textwrap import wrap
# Replace with your own IOTA payment address
sample = 'NYZBHOVSMDWWABXSACAJTTWJOQRPVVAWLBSFQVSJSWWBJJLLSQKNZFC9XCRPQSVFQZPBJCJRANNPVMMEZQJRQSVVGZ'
# Create a list with 4 characters in each element
mylist = wrap(sample,4)
result = ''
@huggre
huggre / car-iota-p2.ino
Created December 28, 2019 21:52
Arduino code for the Car-IOTA Part 2 tutorial
// Include the IRemote library
#include <IRremote.h>
IRsend irsend;
// A hexadecimal representation of the IOTA payment address
// where each element in the array consist of four characters
const int long msgArray[] = {0x47545a55,0x48515350,0x52415143,0x54535142,0x5a45454d,0x4c5a5051,0x55504141,0x394c504c,0x4757434b,0x464e4556,0x4b42494e,0x5845585a,0x52414356,0x4b4b4b43,0x59505750,0x4b483941,0x574c474a,0x48504c4f,0x5a5a4f59,0x54414c41,0x574f5653,0x494a4959,0x565a};
// Defines the delay in milliseconds between each IR message
const int delay_time = 500;
@huggre
huggre / car-iota-p2.py
Created December 28, 2019 21:20
Python script for receiving IOTA address using IR
#Import some libraries
import RPi.GPIO as GPIO
from datetime import datetime
# Import the PyOTA library
import iota
from iota import Address
# Input pin used by IR reciever
pin = 12
@huggre
huggre / car-iota-p1.py
Last active March 17, 2020 14:15
Python script for the Car-IOTA tutorial part 1
# Imports some required PyOTA libraries
import iota
from iota import Address
# Imports some libraries required by OpenALPR communication
import requests
import base64
import json
# Imports the CSV library used for DB comm.
@huggre
huggre / plates.csv
Last active December 1, 2019 12:04
NO36256 SEED_FOR_NO36256_GOES_HERE
NO12345 SEED_FOR_NO12345_GOES_HERE
NO46256 SEED_FOR_NO46256_GOES_HERE
@huggre
huggre / zmq_cube.py
Last active November 11, 2019 23:00
# Import some standard Python libraries
import time
import random
# Import the Raspberry PI GPIO library
import RPi.GPIO as GPIO
# Import the PyZMQ library
import zmq
@huggre
huggre / barcode.py
Last active December 15, 2018 16:16
# Import the PyOTA library
import iota
from iota import Address
from iota import Transaction
from iota import TryteString
from iota.crypto.kerl import Kerl
# Import datetime libary
import datetime
@huggre
huggre / upload_fingerprint.py
Last active January 28, 2024 14:05
Upload fingerprint
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Import the PyOTA library
import iota
# Import json
import json
# Import PyFingerprint library
@huggre
huggre / validate_fingerprint.py
Last active December 15, 2018 10:07
Validate fingerprint
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Imports from the PyOTA library
from iota import Iota
from iota import Address
from iota import Transaction
from iota import TryteString
# Import json library
# -*- coding: utf-8 -*-
# Original code found at:
# https://gist.github.com/DenisFromHR/cc863375a6e19dce359d
"""
Compiled, mashed and generally mutilated 2014-2015 by Denis Pleic
Made available under GNU GENERAL PUBLIC LICENSE
# Modified Python I2C library for Raspberry Pi
# as found on http://www.recantha.co.uk/blog/?p=4849