Showing posts with label Savage Innovations. Show all posts
Showing posts with label Savage Innovations. Show all posts

Saturday, March 19, 2011

SPECIAL DEAL FOR BLOG FOLLOWERS!

OK, Scott and I worked out a few last minute details and are jointly going to provide a grab bag to the first 100 Blog followers that buy an ooPic-32 Raptor when they are released fro PRE-SALES. If the grab bag goods hold out we will hook up even more followers.

Rules -
1 - Must be a FOLLOWER of this Blog. Meaning, if I look to my right and you are not on the list then you are not a follower. Couldn't be more simple...
2 - Must purchase an ooPic 32 Raptor when they are released for PRE-SALES.

What you are going to receive -
A grab bag filled from the personal electronics / robotics supplies of Scott and I.
Your grab bag will have at least $ 10.00 USD worth of useful and usable components. I tested this today and the bag I made up was much closer in value to $20.00 USD retail...
LOL We are not telling you whats inside just yet... but think LEDs, Buttons, Switches, Resistors, Caps etc..

BECOME A ooPIC-32 Raptor BLOG FOLLOWER NOW!

Friday, March 18, 2011

Bet you didn't know...

The ooPIC-32 Raptor can also play double duty as a servo controller.

All those ports arranged around the perimeter are more than just IO... each and every one is also a servo port. That makes for a total of 40 servos that can be driven by the Raptor... Top that!

A bit about objects...

All of us ooPic'ers of old know that it was sometimes a bit tedious to get Scott to fix up an object that didn't work the way we wanted it to... problem solved.

Scott tells me that in the Raptor IDE there is now an object editor. Want an object to work differently? How about an object he didn't think of? No problem... Roll your own.

The Raptor IDE will ship with all of the necessary ooPIC objects just like always, the difference is that there will no longer be hundreds of factory objects built in. Oh, it will ship with a handful of the most necessary objects to build a robot or electronic device but now there will be an 'object editor' that will allow you to create an object anytime you need one. Below is a very simple example of how it will be done:

'1. Open the IDE.
'2. Write this code:
'**********************************************************
'oLED Object
'**********************************************************
Dim IOLine As oIOLine

Sub TurnOn()
IOLine.Value = 1
IOLine.Direction = 1
End Sub

Sub TurnOff()
IOLine.value = 0
IOLine.direction = 0
End Sub
'**********************************************************
'3. Save this code as "oLED.osc" in the "Objects" directory, and you are done!

'To use your new object, create a new project in the IDE and write this code:
'**********************************************************
'Program that uses the oLED Object I just made.
'**********************************************************
Dim RedOne As oLED
RedOne.IOLine = 22
RedOne.TurnOn
'**********************************************************
'Pretty easy to me...But, Lets say that you wanted to vary the brightness of the LED.You can 'change the oLED Object in this way:
'**********************************************************'
'LED Object with brightness control
'**********************************************************
Dim PWM As oPWML
Alias IOLine as PWM.IOLine
Alias Brightness as PWM.Value

Sub TurnOn()
PWM.Operate = 1
PWM.Value = 255
End Sub

Sub TurnOff()
PWM.Value = 0
End Sub
'**********************************************************
'Now you can do this:
'**********************************************************
'Program that uses the oLED I just made.
'**********************************************************
Dim RedOne As oLED
Dim GreenOne As oLED
RedOne.IOLine = 22
GreenOne.IOLine = 23
RedOne.TurnOn
RedOne.Brightness = 75
GreenOne.TurnOn
GreenOne.Brightness = 20
'**********************************************************

ooPIC-32 Raptor 01

Well here it is ladies and gentlemen... ooPIC-32 Raptor number 0001 !!
Picture number 1 - The first fully assembled Raptor in existance. It is sitting on a picture of the all new Virtual Circuit Interface.
Picture number 2 - My little contribution... LED Backlight. Little function but very cool! IO Controlled. On/Off or you could take the high amplitude range from the built in Soundgin and tie it to the LED IO programatically for a sound / light effect.
I am going to keep this BLOG running until Scott gets the new ooPic website up and running. Please direct all questions and comment to me at this location as Scott does not have tons of time to break away from development.

Monday, February 28, 2011

Another awsome rendering,

Here is the latest email content from Scott...




ooPIC32 RAPTOR Rendering.

I just received this rendering from Scott. Pretty cool huh?


Off to the board house!

Scott called this morning and informed me that all the files had been sent to the board house! Now the clock is a ticking.

Sunday, February 27, 2011

ooPIC32 Raptor OFF TO PROTOTYPING TUESDAY!

Scott just informed me that the ooPIC32 Raptors will be off to the board house Tuesday for prototyping.

It gets better... I GET TO TEST ONE OUT!!!

Check this blog often for my testing updates!
OH WHAT A ROBOT I HAVE PLANNED FOR THIS!

All new ooPIC32 Raptor! THE OOPIC IS BACK!

oooooh oopic fans, take a look at this.....
I Just recieved this image from Scott at Savage Innovations. What is it you may ask...? Well, it is the rendering of the brand spanking new ooPIC32 Raptor microcontroller.
Pic32, 80 MIPS, 12K Internal Ram, eeprom for data logging or storage. USB Programmable.
3.3V and 5V regulators. 40 Servo Ports. All the objects you are used to.
The SOUNDGIN is BUILT IT! (Soundgin voice and sound effects generator)
ALL NEW ooPic32 Firmware - Yes that means ooPic BASIC (VISUAL BASICish) language.
Approx 3 inch diameter - +/- .75 hole to hole / +/- 2.77 hole to hole straight across.


In case you wanted to know, that is a Dodecagon. From wiki ~ In geometry, a dodecagon is any polygon with twelve sides and twelve angles.
I am proud to say that I got to name the ooPIC32 Raptor and it was very nice of Scott to add my initials to it.... TM is for Ted Macy right? Couldn't be Trade Mark... naw that would just be wrong. ROFL!
Scott tells me to expect a public release of sometime fall 2011.
Pricing has not been mentioned in detail yet but I think it will be under 80 USD.
I am clearing my workbench right now. This is exciting!