Search found 670 matches
- Thu Nov 20, 2025 11:41 am
- Forum: BASIC programs
- Topic: Test the WiFi connection
- Replies: 8
- Views: 116
- Flag:

Re: Test the WiFi connection
Like my son explained to me: a router may not be configured to handle “ping” requests from the internal network to the router itself. In that case, the ping request does not get an answer, and apparently the ping command keeps trying to get an answer for 10 seconds, and then concludes with a “0” res...
- Mon Nov 17, 2025 8:18 pm
- Forum: BASIC programs
- Topic: Test the WiFi connection
- Replies: 8
- Views: 116
- Flag:

Re: Test the WiFi connection
I asked my sun:
Hoi,
Niet alle apparaten zijn geconfigureerd om op een ping te antwoorden.
(Not all hardware units are configured to answer a ping)
https://en.wikipedia.org/wiki/Internet_ ... e_Protocol
Groets,
Hoi,
Niet alle apparaten zijn geconfigureerd om op een ping te antwoorden.
(Not all hardware units are configured to answer a ping)
https://en.wikipedia.org/wiki/Internet_ ... e_Protocol
Groets,
- Mon Nov 17, 2025 6:05 pm
- Forum: BASIC programs
- Topic: Test the WiFi connection
- Replies: 8
- Views: 116
- Flag:

Re: Test the WiFi connection
Yes, i get the same result while “pinging” the IP adress of my router. I’ll look into that.
- Mon Nov 17, 2025 2:39 pm
- Forum: BASIC programs
- Topic: Test the WiFi connection
- Replies: 8
- Views: 116
- Flag:

Re: Test the WiFi connection
I have no idea.
I will try that here, polling my own IP address. If i get the same result, i wll ask around, because i want to know what’s happening.
I will try that here, polling my own IP address. If i get the same result, i wll ask around, because i want to know what’s happening.
- Sat Nov 15, 2025 2:52 pm
- Forum: BASIC programs
- Topic: Test the WiFi connection
- Replies: 8
- Views: 116
- Flag:

Test the WiFi connection
While playing an on-line game on the PC, i came to suspect the quality of the internet connection. Although the “WiFi” led on the router was lit continuously, the connection seemed to be interrupted often for a short time. To get “proof”, i made a little SB program. It does a “ping” command every se...
- Sat Oct 04, 2025 10:18 am
- Forum: BASIC programs
- Topic: Sierpinsky fractal (re-coded)
- Replies: 0
- Views: 357
- Flag:

Sierpinsky fractal (re-coded)
I like compact program code. Here is Sierpinsky’s fractal by Dalede in the Examples directory. ' Sierpinski fractal maker ' by Dalede (re-coded by Henko) graphics ! get screen size sw,sh ! sc=screen_scale() sw*=sc ! sh*=sc ! x=sw/2 ! y=sh/2 for count=1 to 200000 r=rnd(3) ! x=(x+r*sw/2)/2 ! y=(y+even...
- Wed Sep 10, 2025 2:57 pm
- Forum: BASIC programs
- Topic: Collect some nice pictures (iPads and iPhones)
- Replies: 3
- Views: 634
- Flag:

Re: Collect some nice pictures (iPads and iPhones)
IMG_1351.png graphics ! graphics clear .8,.8,.8 ! draw color 0,0,0 get screen size sw,sh m=15 ! w=floor((sw-3*m)/2) ! h=floor((sh-3*m)/2) draw text "touch any pict to change it" at 10,300 ! pause 2 graphics clear .8,.8,.8 for k=1 to 4 art(m+(w+m)*even(k),m+(h+m)*floor(k/2.1),w,h) next k while(1) ar...
- Wed Sep 10, 2025 2:36 pm
- Forum: BASIC programs
- Topic: Collect some nice pictures (iPads and iPhones)
- Replies: 3
- Views: 634
- Flag:

Re: Collect some nice pictures (iPads and iPhones)
IMG_1351.png graphics ! graphics clear .8,.8,.8 ! draw color 0,0,0 get screen size sw,sh m=15 ! w=floor((sw-3*m)/2) ! h=floor((sh-3*m)/2) draw text "touch any pict to change it" at 10,300 ! pause 2 graphics clear .8,.8,.8 for k=1 to 4 art(m+(w+m)*even(k),m+(h+m)*floor(k/2.1),w,h) next k while(1) ar...
- Wed Sep 10, 2025 11:18 am
- Forum: BASIC programs
- Topic: Collect some nice pictures (iPads and iPhones)
- Replies: 3
- Views: 634
- Flag:

Collect some nice pictures (iPads and iPhones)
IMG_1351.png graphics ! graphics clear .8,.8,.8 ! draw color 0,0,0 get screen size sw,sh m=15 ! w=floor((sw-3*m)/2) ! h=floor((sh-3*m)/2) draw text "touch any pict to change it" at 10,300 ! pause 2 graphics clear .8,.8,.8 for k=1 to 4 art(m+(w+m)*even(k),m+(h+m)*floor(k/2.1),w,h) next k while(1) ar...
- Tue Sep 09, 2025 3:08 pm
- Forum: BASIC programs
- Topic: Yet another clock
- Replies: 7
- Views: 1287
- Flag:

Re: Yet another clock
Hi, In this code block: if m5=0 then highlight(.uur(u),22,0,0) if m5=5 then highlight( 2,5,.uur(u),0) if m5=10 then highlight(3,5,.uur(u),0) if m5=15 then highlight(6,8,.uur(u),0) if m5=20 then highlight(3,4,7,.uur(u1)) if m5=25 then highlight(2,4,7,.uur(u1)) if m5=30 then highlight(7,.uur(u1),0,0) ...