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

18 lines
383 B
Java
Raw Normal View History

2019-01-27 19:34:09 +01:00
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();
}