programming-trinket
recognised by windows as USBtiny
trinket Adafruit_Windows_Drivers It provides support as expressed by THIS PRODUCT CONTAINS THE SILICON LABS VCP DRIVER AND
howto for esp8266 in Arduino IDE
From email on 19 May 2019 to RPi group
with reference to my previous comment:
File -> Preferences . Then find 'additional Boards manager URLS'.
Click on the icon at the far right-hand side - like two overlapping pages - a window pops up.
Then click on 'Click for a list of ... ' which will open a git-hub page.
Look in the readme for ESP32...
date of this : Monday 7 January 14:58:00 AEDT 2019
void setup() {
// put your setup code here, to run once:
// to show the Show Timestamp feature in Arduino IDE 1.8.8
Serial.begin(9600);
}
void loop() {
// transmit word and wait a while
// then, using the 'Show Timestamp' feature in Arduino IDE 1.8.8
// watch the time stamps
// this is useful for testing logging type programs
Serial.println("tick");
delay(5000);
}