Giter Club home page Giter Club logo

Comments (1)

eadmaster avatar eadmaster commented on July 20, 2024

UPDATE: i've managed to port this piece of code from Johnny Five ,seems to work correctly, so no need to add a command:

def pyfirmata_shift_out(board, data_pin, clock_pin, value, is_big_endian=False):
	# derived from https://github.com/rwaldron/johnny-five/blob/main/lib/board.js#L560
	for i in range(8):
		board.digital[clock_pin].write(0)
		if is_big_endian:
			b = int(bool(value & (1 << (7 - i))))
		else:
			b = int(bool(value & (1 << i)))
		board.digital[data_pin].write(b)
		board.digital[clock_pin].write(1)
        

def update_bar_display(value):
	# open latch to fill register with data
	board.digital[LEDBAR_SHIFTREG_LATCH_PIN].write(0)
	
	def convert_to_bits_on(num):
		result = 0
		for i in range(num):
			result |= 1 << i
		return result
	
	#print("real value", value)
	value = int(value/9)
	if value>7:
		value=7
	#print("real value", value)
	value = convert_to_bits_on(value)
	
	pyfirmata_shift_out(board, LEDBAR_SHIFTREG_DATA_PIN, LEDBAR_SHIFTREG_CLOCK_PIN, value, True)
	
	# close latch to commit bits into register.
	board.digital[LEDBAR_SHIFTREG_LATCH_PIN].write(1)

original example: https://johnny-five.io/examples/shift-register/

from pyfirmata.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.