flutter_smartconfig/android/src/main/java/com/espressif/iot/esptouch/task/IEsptouchGenerator.java

18 lines
383 B
Java

package com.espressif.iot.esptouch.task;
public interface IEsptouchGenerator {
/**
* Get guide code by the format of byte[][]
*
* @return guide code by the format of byte[][]
*/
byte[][] getGCBytes2();
/**
* Get data code by the format of byte[][]
*
* @return data code by the format of byte[][]
*/
byte[][] getDCBytes2();
}