All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ociweb.iot.grove.oled.BinaryOLED Maven / Gradle / Ivy

Go to download

FogLight is a lightweight runtime that enables makers of all ages and skill levels to create highly performant apps for embedded devices like Raspberry Pi's.

The newest version!
package com.ociweb.iot.grove.oled;

import com.ociweb.iot.maker.image.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.ociweb.iot.maker.FogCommandChannel;
import com.ociweb.pronghorn.iot.schema.I2CCommandSchema;
import com.ociweb.pronghorn.pipe.DataOutputBlobWriter;


/**
 * 
 * @author Ray Lo
 *
 */
public abstract class BinaryOLED implements FogBmpDisplayable {
	
	Logger logger = LoggerFactory.getLogger((BinaryOLED.class));
	protected final FogCommandChannel ch;
	protected final int[] data_out;
	protected final int[] cmd_out;
	protected final int i2c_address;
	
	protected static final int BATCH_SIZE = 50;
	public static final int COMMAND_MODE = 0x80;
	public static final int DATA_MODE = 0x40;
	
	protected BinaryOLED(FogCommandChannel ch, int[] data_out, int[]cmd_out, int i2c_address){
		this.ch = ch;
		this.data_out = data_out;
		this.cmd_out = cmd_out;
		this.i2c_address = i2c_address;
		ch.ensureI2CWriting(16, BATCH_SIZE);
	}

	
	public FogBitmap newEmptyBmp() {
		return new FogBitmap(newBmpLayout());
	}
	
	/**
	 * Sends a "data" identifier byte followed by the user-supplied byte over the i2c.
	 * @return true if the command byte and the supplied byte were succesfully sent, false otherwise.
	 */

	protected boolean sendData(){
		return sendData(0, data_out.length);
	}
	
	protected boolean sendData(int[] data){
		return sendData(data, 0, data.length);
	}
	
	/**
	 * If no data is supplied, we are using the default data_out held by this object
	 * @param start
	 * @param length
	 * @return true
	 */
	protected boolean sendData(int start, int length){
		return sendData(data_out, start,length);
	}
	
	/**
	 * Send an array of data
	 * Implemented by calling {@link #sendData(int[], int, int, int)}, which recursively calls itself
	 * exactly 'm' times, where 'm' is the number of batches requires to send the data array specified by the start and length.
	 * Implemented to use an array of passed-in data instead of defaulting to this.data_out so that one doesn't have
	 * to go through the trouble of copying the entire data array if the data array is already constructed
	 * @param start
	 * @param length
	 * @return true if the i2c bus is ready, false otherwise.
	 */
	protected boolean sendData(int[] data, int start, int length){
		if (!ch.i2cIsReady( ( (length + 1) * 2 / BATCH_SIZE) + 1) ){
			return false;
		}
		//call the helper method to recursively send batches
		return sendData(data, start,BATCH_SIZE, start+length);
	}
	
	
	/**
	 * The private method required. for {@link BinaryOLED#sendData(int[], int, int)} to function.
	 * @param data
	 * @param start
	 * @param length
	 * @param finalTargetIndex
	 * @return true if the i2c bus is ready, false otherwise.
	 */
	
	private boolean sendData(int [] data, int start, int length, int finalTargetIndex){
		DataOutputBlobWriter i2cPayloadWriter = ch.i2cCommandOpen(i2c_address);
		i2cPayloadWriter.write(DATA_MODE);
		int i;
		for (i = start; i < Math.min(start + length - 1, finalTargetIndex); i++){
			i2cPayloadWriter.write(data[i]);
		}
		ch.i2cCommandClose(i2cPayloadWriter);
		ch.i2cFlushBatch();
		if (i == finalTargetIndex){
			return true;
		}
		return sendData(data, i, BATCH_SIZE, finalTargetIndex); //calls itself recursively until we reach finalTargetIndex
	}
	
	
	/**
	 * Send a single byte of command.
	 * @param b
	 * @return true if the i2c bus is ready, false otherwise.
	 */
	protected boolean sendCommand(int b){
		if (!ch.i2cIsReady()){
			return false;
		}
		DataOutputBlobWriter i2cPayloadWriter = ch.i2cCommandOpen(i2c_address);
		i2cPayloadWriter.write(COMMAND_MODE);
		i2cPayloadWriter.write(b);
		ch.i2cCommandClose(i2cPayloadWriter);

		return true;
	}
	
	/**
	 * Unliked send data, sendCommands makes the assumption that the call is not sending more than one batch worth of commands
	 *Each command  involves two bytes. So if the caller is trying to send a command array of size 5, they are really sending
	 *10 bytes.
	 * @param start
	 * @param length
	 * @return true
	 */

	protected boolean sendCommands(int start, int length){
		return sendCommands(cmd_out,start,length);
	}
	
	protected boolean sendCommands(int[] cmd, int start, int length){
		if (!ch.i2cIsReady( (length * 2 / BATCH_SIZE) + 1) ){ //TODO: this math is newly added, may need to double-check.
			logger.trace("I2C is not ready");
			return false;
		}
		//call the helper method to recursively send batches
		return sendCommands(cmd, start,BATCH_SIZE, start+length);
	}
	
	private boolean sendCommands(int [] cmd, int start, int length, int finalTargetIndex){
		DataOutputBlobWriter i2cPayloadWriter = ch.i2cCommandOpen(i2c_address);
		length = length / 2; //we need to send two bytes for each command
		int i;
		
		for (i = start; i < Math.min(start + length, finalTargetIndex); i++){
			i2cPayloadWriter.write(COMMAND_MODE);
			i2cPayloadWriter.write(cmd[i]);
		}
		ch.i2cCommandClose(i2cPayloadWriter);
		ch.i2cFlushBatch();
		
		if (i == finalTargetIndex){
			return true;
		}
		return sendCommands(cmd, i, BATCH_SIZE, finalTargetIndex); //calls itself recursively until we reach finalTargetIndex
	}
	
	//This is protected at David Giovannini's request.
	protected abstract boolean init();
	
	public abstract boolean clear();
	public abstract boolean cleanClear();
	public abstract boolean displayOn();
	public abstract boolean displayOff();
	public abstract boolean inverseOn();
	public abstract boolean inverseOff();
	public abstract boolean setContrast(int contrast);
	public abstract boolean setTextRowCol(int row, int col);
	public abstract boolean printCharSequence(CharSequence s);
	public abstract boolean printCharSequenceAt(CharSequence s, int row, int col);
	public abstract boolean activateScroll();
	public abstract boolean deactivateScroll();
	public abstract boolean setUpScroll();
	public abstract boolean display(int[][] raw_image);
	public abstract boolean display(int[][] raw_image, int pixelDepth);
	public abstract boolean setHorizontalMode();
	public abstract boolean setVerticalMode();
	public abstract boolean display(FogBitmap bmp);
	public abstract FogBitmapLayout newBmpLayout();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy