Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

you will have to hard rest the tablet:I have set up my brand new Teclast P80h tablet (using my OnePlus 7) as per the tablet's instructions. The setup finished successfully.
However, I now find the tablet demands a PIN to unlock. I cannot remember having used any PIN, and if I did there is only one possible number which the tablet doesn't accept.
How can I unlock without a PIN?
P.S. The reset hole doesn't reset but only restarts.
Brother, iphone isn't definitely the solution..not in the next five hundred years..that's a fact..the only flaw our Android has it's those two pesky apps..but there's always a way around everything..the way I handled it was downgrading the version of those two stupid apps..Google ps & Google ps.
But I didn't just dg them..I ported & pushed them into the priv-app folder(@MrJavi idea)..now they still work but passive..I cut their stamina and wildness..now they are domesticated..well I'm speaking from my phone..not for everyone else's phone..
Also on top of that you cut the internet for Google ps with an internet guard.
View attachment 155272
View attachment 155273

Oh, Knott's Scary Farm! Such fun. The mazes and everything. Spooky.i have rarely been to Knott's save for their Knott's Scary Farm

Well, if you're ever there again, have a slice of boysenberry pie and see how you like it, then stop in at their shop with a BAZILLION different kinds of preserves/jams/jellies! They have amazing stuff in there that you'll never see in supermarkets.and even then i never had their pies. i do remember their jams, but thats about it.
Probably not, for a variety of reasons. One, a fond memory tends to color things a certain way, I hate to use the term 'sugar-coated' while talking about pie, but there you go. Plus, your uncle's berries were fresh-picked, and nothing can compare to that. When I used to have a vegetable garden, the veggies picked fresh from the yard then brought inside and cooked immediately tasted a million times better than anything bought from a store.plus i doubt that it would be better then my uncle's berry pies.
ok cool. keep us posted if the issue returns again.that is what i did, It seems to be working good right now. I downloaded different texting apps and maybe something piggybacked off of those.
private readonly cmdISO15693 = {
READ_SINGLE_BLOCK: 0x20,
WRITE_SINGLE_BLOCK: 0x21,
LOCK_BLOCK: 0x22
};
this.nfc.connect('android.nfc.tech.NfcV', 500)
.then(
(data) => {
console.log('connected to', this.nfc.bytesToHexString(tag.id.reverse()).toUpperCase());
console.log('maxTransceiveLength: ', data);
const offset = 0; // offset of first block to read
const blocks = 8; // number of blocks to read
const bytesOfText: number[] = this.nfc.stringToBytes(text);
console.log('bytesOfText: ', bytesOfText);
console.log('hex string: ', this.nfc.bytesToHexString(bytesOfText));
let cmd = new Int8Array([
0x60, // 0: flags: addressed (= UID field present) or 0x90 0x60 0x40 0x20??
this.cmdISO15693.READ_SINGLE_BLOCK, // 1: command
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // 2-9 placeholder for tag UID
0x00 // 10: block number
// 0x00, 0x00, 0x00, 0x00 // 11- DATA
// ((blocks - 1) & 0x0ff) // number of blocks (-1 as 0x00 means one block)
]);
console.log('cmd: ', [...cmd]);
// tag uid in which direction
cmd = arrayCopy(tag.id.reverse(), 0, cmd, 2, 8);
console.log('cmd new: ', [...cmd]);
console.log('cmd buffer: ', cmd.buffer);
// arrayCopy(bytesOfText, 0, cmd, 11, 4);
this.nfc.transceive(cmd.buffer)
.then((res: ArrayBuffer) => {
console.log('transceive result:', res);
try {
console.log(Utf8ArrayToStr(res));
} catch (e) {
console.log('Utf8ArrayToStr not possible', e);
}
this.nfc.close().then(() => console.log('closed connection'))
.catch((err) => console.log('error closing', err));
})
.catch((err) => {
console.log('error while transceive', err);
this.displayToast('Error to write the RFID-Chips.', 'warning');
});
}