PyCASCLib: CASC interface for Warcraft III

CASC interface for Warcraft III. This repo provides bindings for JCASC: https://github.com/DrSuperGood/JCASC Jdk is required for installation. You can either download it manually and set jdk_path or let the installer do it automatically.for windows: python setup.py install –new –version=16 python setup.py install –jdkpath “path_to_your_jdk” for unix: python3 setup.py install –new –version=16 python3 setup.py install –jdkpath “path_to_your_jdk” main functions are: read_temp, open_image, open_file, read_text

Read more

Python bindings for Raspberry Pi HX711 C++ Library

Python bindings for Raspberry Pi HX711 C++ Library Sample Output The .gif above illustrates the output of a simple Python script on a Raspberry Pi Zero W where the HX711 chip was operating at 80Hz. In this example, each time the .weight function is called the median of three samples was used to calculate the weight in grams. Examples SimpleHX711 Example from HX711 import * # create a SimpleHX711 object using GPIO pin 2 as the data pin, # GPIO […]

Read more