The ESP8266 WiFi Module–how to get it to work with an Arduino

Finally got around to playing with the ESP8266 WiFi Module with an Arduino UNO.  I am using the UNO simply because it has a steady, 3.3v output while the HalfByte Console isn’t as steady and the module is, from everything I have read, is not tolerant of much more than the 3.3 volts.  Until I […]

Read More The ESP8266 WiFi Module–how to get it to work with an Arduino

Holiday Greetings from Half-Byte!

To celebrate the season, I give you  a little code snippet for Half-Byte Tiny Basic: 100 CLS 110 LINE 40,2,20,22,1 120 LINE 40,2,60,22,1 130 LINE 20,22,60,22,1 140 BOX 38,22,4,2,1 150 SET 40,1 160 SET 38,10 170 SET 30,15 180 SET 45,17 190 SET 24,18 200 SET 48,19 210 SET 36,12 220 SET 32,16: RESET 37,14 […]

Read More Holiday Greetings from Half-Byte!

Holiday Greetings from Half-Byte!

To celebrate the season, I give you  a little code snippet for Half-Byte Tiny Basic:100 CLS110 LINE 40,2,20,22,1120 LINE 40,2,60,22,1130 LINE 20,22,60,22,1140 BOX 38,22,4,2,1150 SET 40,1160 SET 38,10170 SET 30,15180 SET 45,17190 SET 24,18200 SET 48,19210 SET 36,12220 SET 32,16: RESET 37,14230 DELAY 1000240 # Seasons Greetings!250 CURSOR 8,5260 PRINT “Merry”270 CURSOR 6,6280 PRINT “Christmas!”290 […]

Read More Holiday Greetings from Half-Byte!

Half-Byte Tiny Basic Type In Game: Invader

Yep, I use ‘Invader’ a lot. Here’s a version, just for Half-Byte Tiny Basic. It features Wii Nunchuck support, sound and AWESOME graphics! Just awesome! 100 CLS110 X=0:Y=0:D=1:Z=75120 LINE 0,38,79,38,1130 B=9:C=5:U=4:V=0140 CURSOR 0,7:?”Score:”;150 GOSUB 800160 GOSUB 900170 P=PAD(3)180 IF P=1 S=1185 IF P=1 TONE 1024,100190 IF S=1 GOSUB 700290 GOTO 150700 CURSOR B,U:?CHR(142);710 DELAY Z:CURSOR […]

Read More Half-Byte Tiny Basic Type In Game: Invader