Re: PicoLisp Website

2015-12-18 Thread Alexander Williams
Is there a way to see this without cloning the repo and running it locally? (i'm on mobile right now). Perhaps someone can attach a screenshot or host a live version somewhere? Thanks! AW On Dec 13, 2015 3:25 AM, "Erik Gustafson" wrote: > My dearest fellow PicoLispers, > > I should have shared

Re: PicoLisp Website

2015-12-18 Thread Erik Gustafson
Sure thing! I'll send a few screenshots when I'm back at my computer in a couple hours.

Re: PicoLisp Website

2015-12-18 Thread Christophe Gragnic
On Fri, Dec 18, 2015 at 7:17 PM, Erik Gustafson wrote: > Sure thing! I'll send a few screenshots when I'm back at my computer in a > couple hours. I brutally «saved as» a local version then uploaded it here: http://fezzik.free.fr/picolisp/ chri -- http://profgra.org/lycee/ (site pro) http:/

Re: PicoLisp Website

2015-12-18 Thread Rick Hanson
Thanks, Christophe, for putting this up. I'm now like AW, I'm only on the phone. Anyway, first thought upon loading the site: Star Trek :) I love it! Great job! On Dec 18, 2015 1:49 PM, "Christophe Gragnic" wrote: > On Fri, Dec 18, 2015 at 7:17 PM, Erik Gustafson > wrote: > > Sure thing!

Why won't the LED flash?

2015-12-18 Thread Josh
Why does this small amount of code not make the onboard LED flash? (pio-pin-setdir *pio-output* 'PB_29) (pio-pin-sethigh 'PB_29) (loop (pio-pin-setlow 'PB_29) (tmr-delay 0 10) (pio-pin-sethigh 'PB_29)) All that happens in the blue LED turns on and stays on, even though the c

Re: Why won't the LED flash?

2015-12-18 Thread Raman Gopalan
Dear Josh, greetings! Firstly, great to know you're playing with your board! Perfect! > Why does this small amount of code not make the onboard LED flash? I think you're not providing enough delay for you to see the off state of the LED. Why don't you try this? I've just inserted an additional d

Re: Why won't the LED flash?

2015-12-18 Thread Josh
Thanks for the reply, but that time is 1/5th of the time for the blinking LED example, and 1/5th a second is enough for an eye to see. Anyways, this little bit: > (pio-pin-setlow led) > (delay 10) > (pio-pin-sethigh led) > (delay 10) ) ) ) Is exactly t

Re: Why won't the LED flash?

2015-12-18 Thread Raman Gopalan
Dear Josh, > But it doesn't blink, I adjusted the times to make them five times > higher and it just waits around 1 second and the LED turns on but You mean it just turns "on" and doesn't blink with the same example below? Adjusting the time is OK, but we're missing something else here. Are you t